Guido van Rossum 83addc7a0f Charles Waldman writes:
"""
Problem description:

	Run the following script:

import test.test_cpickle
for x in xrange(1000000):
    reload(test.test_cpickle)

Watch Python's memory use go up up and away!

In the course of debugging this I also saw that cPickle is
inconsistent with pickle - if you attempt a pickle.load or pickle.dump
on a closed file, you get a ValueError, whereas the corresponding
cPickle operations give an IOError.  Since cPickle is advertised as
being compatible with pickle, I changed these exceptions to match.
"""
2000-04-21 20:49:36 +00:00
..
2000-03-28 20:29:59 +00:00
2000-04-10 17:06:55 +00:00
2000-04-21 20:49:36 +00:00
1998-12-08 16:27:10 +00:00
2000-04-19 13:54:15 +00:00
1998-12-07 14:28:47 +00:00
1999-04-10 15:48:23 +00:00