summaryrefslogtreecommitdiff
path: root/Lib/test/pickletester.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-31829: Make protocol 0 pickles be loadable in text mode in Python 2. (GH-...Miss Islington (bot)2019-06-121-4/+15
* [3.7] bpo-36766: Typos in docs and code comments (GH-13116). (GH-13136)penguindustin2019-05-061-1/+1
* bpo-34572: change _pickle unpickling to use import rather than retrieving fro...Miss Islington (bot)2019-02-181-1/+66
* bpo-33209: End framing at the end of C implementation of pickle.Pickler.dump(...Miss Islington (bot)2018-04-031-17/+18
* bpo-32503: Avoid creating too small frames in pickles. (#5127)Serhiy Storchaka2018-01-201-37/+45
* bpo-31993: Do not use memoryview when pickle large strings. (#5154)Serhiy Storchaka2018-01-131-30/+30
* bpo-31993: Do not create frames for large bytes and str objects (#5114)Serhiy Storchaka2018-01-111-8/+9
* bpo-31993: Do not allocate large temporary buffers in pickle dump. (#4353)Olivier Grisel2018-01-061-13/+118
* bpo-32037: Use the INT opcode for 32-bit integers in protocol 0 pickles. (#4407)Serhiy Storchaka2017-11-161-3/+3
* bpo-32032: Test both implementations of module-level pickle API. (#4401)Serhiy Storchaka2017-11-151-12/+12
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-2/+2
* Issue #17711: Fixed unpickling by the persistent ID with protocol 0.Serhiy Storchaka2016-07-171-0/+29
|\
| * Issue #17711: Fixed unpickling by the persistent ID with protocol 0.Serhiy Storchaka2016-07-171-0/+29
* | Fixed typo in pickle tests.Serhiy Storchaka2016-03-041-2/+2
|\ \ | |/
| * Fixed typo in pickle tests.Serhiy Storchaka2016-03-041-2/+2
* | Make catched exception more specific and correct a comment.Serhiy Storchaka2015-12-301-3/+3
|\ \ | |/
| * Make catched exception more specific and correct a comment.Serhiy Storchaka2015-12-301-3/+3
* | Issue #25761: Improved detecting errors in broken pickle data.Serhiy Storchaka2015-12-061-11/+6
* | Issue #25761: Added more test cases for testing unpickling broken data.Serhiy Storchaka2015-11-291-93/+197
|\ \ | |/
| * Issue #25761: Added more test cases for testing unpickling broken data.Serhiy Storchaka2015-11-291-93/+197
| |\
| | * Issue #25761: Added more test cases for testing unpickling broken data.Serhiy Storchaka2015-11-291-93/+197
* | | Issue #23914: Fixed SystemError raised by unpickler on broken pickle data.Serhiy Storchaka2015-11-231-1/+84
|\ \ \ | |/ /
| * | Issue #23914: Fixed SystemError raised by unpickler on broken pickle data.Serhiy Storchaka2015-11-231-1/+84
| |\ \ | | |/
| | * Issue #23914: Fixed SystemError raised by unpickler on broken pickle data.Serhiy Storchaka2015-11-231-1/+84
* | | Issue #892902: Added new tests for pickling recursive collections.Serhiy Storchaka2015-11-071-16/+104
|\ \ \ | |/ /
| * | Issue #892902: Added new tests for pickling recursive collections.Serhiy Storchaka2015-11-071-16/+104
| |\ \ | | |/
| | * Issue #892902: Added new tests for pickling recursive collections.Serhiy Storchaka2015-11-071-16/+104
* | | Issue #24164: Objects that need calling ``__new__`` with keyword arguments,Serhiy Storchaka2015-10-101-4/+2
|/ /
* | Issue #25262. Added support for BINBYTES8 opcode in Python implementation ofSerhiy Storchaka2015-09-291-0/+20
|\ \ | |/
| * Issue #25262. Added support for BINBYTES8 opcode in Python implementation ofSerhiy Storchaka2015-09-291-0/+20
* | Added additional unpickling tests.Serhiy Storchaka2015-09-291-37/+229
|\ \ | |/
| * Added additional unpickling tests.Serhiy Storchaka2015-09-291-37/+229
* | Moved unpickling tests with prepickled data to separate class.Serhiy Storchaka2015-09-291-209/+215
|\ \ | |/
| * Moved unpickling tests with prepickled data to separate class.Serhiy Storchaka2015-09-291-209/+215
* | merge 3.4Benjamin Peterson2015-07-021-1/+1
|\ \ | |/
| * use correct __new__ method (closes #24552)Benjamin Peterson2015-07-021-1/+1
* | merge 3.4 (#24552)Benjamin Peterson2015-07-021-0/+12
|\ \ | |/
| * fix use after free (closes #24552)Benjamin Peterson2015-07-021-0/+12
* | Issue #23611: Serializing more "lookupable" objects (such as unbound methodsSerhiy Storchaka2015-03-311-4/+15
* | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-311-1/+48
|\ \ | |/
| * Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-311-1/+48
* | Use pickled data compatible with Python 2 for testing protocols 0-2.Serhiy Storchaka2015-02-151-216/+217
|\ \ | |/
| * Use pickled data compatible with Python 2 for testing protocols 0-2.Serhiy Storchaka2015-02-151-216/+217
* | Issue #23094: Fixed readline with frames in Python implementation of pickle.Serhiy Storchaka2015-01-261-0/+8
|\ \ | |/
| * Issue #23094: Fixed readline with frames in Python implementation of pickle.Serhiy Storchaka2015-01-261-0/+8
* | Issue #22783: Pickling now uses the NEWOBJ opcode instead of the NEWOBJ_EXSerhiy Storchaka2014-12-161-11/+65
* | Fix uninitialized variable after #22676.Antoine Pitrou2014-12-021-0/+21
|/
* Issue #22775: Fixed unpickling of http.cookies.SimpleCookie with protocol 2Serhiy Storchaka2014-11-021-1/+1
* Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-101-7/+5
|\
| * Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-101-7/+5