summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pickle.py
Commit message (Collapse)AuthorAgeFilesLines
* Reorganize pickle/cPickle testing so the tests pass regardless of the orderTim Peters2001-01-221-154/+2
| | | | they're run.
* Test some Unicode pickling endcases.Guido van Rossum2000-12-191-0/+12
|
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-1/+1
|
* - plug a memory leak due to circular listsNeil Schemenauer2000-09-221-0/+3
|
* Fix Bug #114293:Jeremy Hylton2000-09-151-7/+72
| | | | | | | | | | | Strings are unpickled by calling eval on the string's repr. This change makes pickle work like cPickle; it checks if the pickled string is safe to eval and raises ValueError if it is not. test suite modifications: Verify that pickle catches a variety of insecure string pickles Make test_pickle and test_cpickle use exactly the same test suite Add test for pickling recursive object
* Basic regr tests for pickle/cPickleGuido van Rossum1999-03-251-0/+75