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 2004-03-25.13:25:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This patch performs string sharing in marshal for interned strings. 
On marshalling, TYPE_INTERNED is generated for the first 
occurrence of an interned strings, and TYPE_STRINGREF for a later 
occurrence. On unmarshalling, TYPE_INTERNED strings are interned 
on unmarshalling.

During marshalling, a dictionary is created to track the strings; on 
unmarshalling, a list.
History
Date User Action Args
2007-08-23 15:36:52adminlinkissue923098 messages
2007-08-23 15:36:52admincreate