diff options
author | Skip Montanaro <skip@pobox.com> | 2003-01-29 15:41:33 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-01-29 15:41:33 (GMT) |
commit | 5445594e20baf1ac0c0c1aef30d55d789c4b9694 (patch) | |
tree | 28ddf47d335b6c4be8429e1bfbce6ccb751a2d61 | |
parent | 5e83b7a9cce3c619c98f929c8cd425058fc49139 (diff) | |
download | cpython-5445594e20baf1ac0c0c1aef30d55d789c4b9694.zip cpython-5445594e20baf1ac0c0c1aef30d55d789c4b9694.tar.gz cpython-5445594e20baf1ac0c0c1aef30d55d789c4b9694.tar.bz2 |
minor grammar tweaks
-rw-r--r-- | Lib/pickletools.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/pickletools.py b/Lib/pickletools.py index 7783d24..dd88a0e 100644 --- a/Lib/pickletools.py +++ b/Lib/pickletools.py @@ -1,4 +1,4 @@ -""""Executable documentation" for the pickle module. +'''"Executable documentation" for the pickle module. Extensive comments about the pickle protocols and pickle-machine opcodes can be found here. Some functions meant for external use: @@ -8,7 +8,7 @@ genops(pickle) dis(pickle, out=None, indentlevel=4) Print a symbolic disassembly of a pickle. -""" +''' # Other ideas: # @@ -126,10 +126,10 @@ The third major set of additions came in Python 2.3, and is called "protocol the registry contents are predefined (there's nothing akin to the memo's PUT). -Another, independent change with Python 2.3 is the abandonment of any -pretense that it might be safe to pickles received from untrusted +Another independent change with Python 2.3 is the abandonment of any +pretense that it might be safe to load pickles received from untrusted parties -- no sufficient security analysis has been done to guarantee -this and there isn't a use case to warrants the expense of such an +this and there isn't a use case that warrants the expense of such an analysis. To this end, all tests for __safe_for_unpickling__ or for |