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 loewis
Recipients
Date 2006-06-30.16:01:16
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=21627

Ok, memory reduction would be a valid reason. How much
memory is being preserved (say, for an empty program, or for
an IDLE run)?

I don't see the improved maintainability. Interning is
inherently *not* a set operation, it's a dictionary
operation: You are given a string, and need to return its
interned version. That's a table lookup. In fact, the set
API had to be changed (to add _PySet_InternString) to add a
lookup operation.
History
Date User Action Args
2007-08-23 15:52:50adminlinkissue1507011 messages
2007-08-23 15:52:50admincreate