This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients Somelauw, benjamin.peterson, jyasskin, mark.dickinson, rhettinger
Date 2009-01-20.00:03:05
SpamBayes Score 3.1781285e-05
Marked as misclassified No
Message-id <1232409787.77.0.779452381686.issue4998@psf.upfronthosting.co.za>
In-reply-to
Content
For the Fractions issue, consider adding an empty __slots__ declaration
to every level in numbers.py.  That will preclude unintended dictionary
creation for anything inheriting from the numbers abcs.

We should also be an issue for the other abcs.  The collections ABCs are
less affected because they are not as granular as number objects.  So
their overall memory footprint only grows by a small percentage from the
inclusion of an instance dictionary.
History
Date User Action Args
2009-01-20 00:03:07rhettingersetrecipients: + rhettinger, mark.dickinson, jyasskin, benjamin.peterson, Somelauw
2009-01-20 00:03:07rhettingersetmessageid: <1232409787.77.0.779452381686.issue4998@psf.upfronthosting.co.za>
2009-01-20 00:03:07rhettingerlinkissue4998 messages
2009-01-20 00:03:05rhettingercreate