summaryrefslogtreecommitdiff
path: root/Lib/copyreg.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-44676: Serialize the union type using only public API (GH-27323) (GH-27340)Miss Islington (bot)2021-07-241-0/+6
| | | | | | | Remove also the _from_args() constructor. (cherry picked from commit 435a0334d341e5f8faed594d9f015746bb7845db) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-41052: Fix pickling heap types implemented in C with protocols 0 and 1 ↵Serhiy Storchaka2020-10-241-0/+4
| | | | (GH-22870)
* bpo-33138: Change standard error message for non-pickleable and non-copyable ↵Serhiy Storchaka2018-10-311-6/+9
| | | | types. (GH-6239)
* bpo-31107: Fix copyreg mangled slot names calculation. (#2989)Shane Harvey2017-08-041-1/+5
|
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-1/+1
| | | This hides unwanted implementation details from tracebacks.
* Issue #17810: Implement PEP 3154, pickle protocol 4.Antoine Pitrou2013-11-231-0/+6
| | | | Most of the work is by Alexandre.
* Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-2/+2
|
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-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. ........