mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Moving pickletools.py from the sandbox into the std library. I started
this over the weekend, and it made faster & better progress than I expected -- it's already useful <wink>.
This commit is contained in:
parent
40e1ce4d73
commit
8ecfc8ef9d
3 changed files with 1803 additions and 2 deletions
1794
Lib/pickletools.py
Normal file
1794
Lib/pickletools.py
Normal file
File diff suppressed because it is too large
Load diff
3
Lib/test/test_pickletools.py
Normal file
3
Lib/test/test_pickletools.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
import pickletools
|
||||
from test import test_support
|
||||
test_support.run_doctest(pickletools)
|
|
@ -122,6 +122,10 @@ Extension modules
|
|||
Library
|
||||
-------
|
||||
|
||||
- The new pickletools.py contains lots of documentation about pickle
|
||||
internals, and supplies some helpers for working with pickles, such as
|
||||
a symbolic pickle disassembler.
|
||||
|
||||
- Xmlrpclib.py now supports the builtin boolean type.
|
||||
|
||||
- py_compile has a new 'doraise' flag and a new PyCompileError
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue