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 dstemmer
Recipients dstemmer
Date 2009-05-01.04:51:53
SpamBayes Score 8.4516236e-05
Marked as misclassified No
Message-id <1241153520.12.0.753692294118.issue5892@psf.upfronthosting.co.za>
In-reply-to
Content
Given two modules, I've seen the following kind of strange behavior with
list sorting on import and delete; a list that has been imported, sorted
and deleted remains sorted on a second import:

my_module.py:

some_list = ['b','a']

other_module.py:

from  my_module import some_list
print some_list
some_list.sort()
print some_list
del some_list
from  my_module import some_list
print some_list

Output is:

['b','a']
['a','b']
['a','b']

Sorry if it's already been reported.
History
Date User Action Args
2009-05-01 04:52:01dstemmersetrecipients: + dstemmer
2009-05-01 04:52:00dstemmersetmessageid: <1241153520.12.0.753692294118.issue5892@psf.upfronthosting.co.za>
2009-05-01 04:51:57dstemmerlinkissue5892 messages
2009-05-01 04:51:53dstemmercreate