Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-99325: Remove unused `NameError` handling (#99326) | Nikita Sobolev | 2022-11-11 | 1 | -9/+3 |
| | |||||
* | bpo-26579: Add object.__getstate__(). (GH-2821) | Serhiy Storchaka | 2022-04-06 | 1 | -0/+4 |
| | | | | | | | Copying and pickling instances of subclasses of builtin types bytearray, set, frozenset, collections.OrderedDict, collections.deque, weakref.WeakSet, and datetime.tzinfo now copies and pickles instance attributes implemented as slots. | ||||
* | bpo-44676: Serialize the union type using only public API (GH-27323) | Serhiy Storchaka | 2021-07-24 | 1 | -0/+6 |
| | | | | Remove also the _from_args() constructor. | ||||
* | bpo-41052: Fix pickling heap types implemented in C with protocols 0 and 1 ↵ | Serhiy Storchaka | 2020-10-24 | 1 | -0/+4 |
| | | | | (GH-22870) | ||||
* | bpo-33138: Change standard error message for non-pickleable and non-copyable ↵ | Serhiy Storchaka | 2018-10-31 | 1 | -6/+9 |
| | | | | types. (GH-6239) | ||||
* | bpo-31107: Fix copyreg mangled slot names calculation. (#2989) | Shane Harvey | 2017-08-04 | 1 | -1/+5 |
| | |||||
* | bpo-29762: More use "raise from None". (#569) | Serhiy Storchaka | 2017-04-05 | 1 | -1/+1 |
| | | | This hides unwanted implementation details from tracebacks. | ||||
* | Issue #17810: Implement PEP 3154, pickle protocol 4. | Antoine Pitrou | 2013-11-23 | 1 | -0/+6 |
| | | | | Most of the work is by Alexandre. | ||||
* | Closes #13258: Use callable() built-in in the standard library. | Florent Xicluna | 2011-10-28 | 1 | -2/+2 |
| | |||||
* | Rename copy_reg module to copyreg. | Alexandre Vassalotti | 2008-05-11 | 1 | -0/+196 |
Updated documentation. Merged revisions 63042 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r63042 | alexandre.vassalotti | 2008-05-11 04:25:28 -0400 (Sun, 11 May 2008) | 5 lines Added module stub for copy_reg renaming in 3.0. Renamed copy_reg to copyreg in the standard library, to avoid spurious warnings and ease later merging to py3k branch. Public documentation remains intact. ........ |