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:50:47
SpamBayes Score 8.4516236e-05
Marked as misclassified No
Message-id <1241153462.53.0.480786919372.issue5891@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','a']
['a','b']

Sorry if it's already been reported.
History
Date User Action Args
2009-05-01 04:51:09dstemmersetrecipients: + dstemmer
2009-05-01 04:51:02dstemmersetmessageid: <1241153462.53.0.480786919372.issue5891@psf.upfronthosting.co.za>
2009-05-01 04:50:56dstemmerlinkissue5891 messages
2009-05-01 04:50:51dstemmercreate