diff options
| author | Martin Panter <vadmium+py@gmail.com> | 2016-05-26 05:35:26 (GMT) |
|---|---|---|
| committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-26 05:35:26 (GMT) |
| commit | 46f50726a0047ae81d478c3a206f587b8f35ed08 (patch) | |
| tree | 2046fa568e0abebe8f055b30fbbd4585a429a708 /Modules/_pickle.c | |
| parent | eb9aca3c071aab925831a389ab26816c170dc159 (diff) | |
| download | cpython-46f50726a0047ae81d478c3a206f587b8f35ed08.zip cpython-46f50726a0047ae81d478c3a206f587b8f35ed08.tar.gz cpython-46f50726a0047ae81d478c3a206f587b8f35ed08.tar.bz2 | |
Issue #27076: Doc, comment and tests spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
Diffstat (limited to 'Modules/_pickle.c')
| -rw-r--r-- | Modules/_pickle.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 47977ec..9b8b042 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -6520,7 +6520,7 @@ binary file object opened for reading, an io.BytesIO object, or any other custom object that meets this interface. Optional keyword arguments are *fix_imports*, *encoding* and *errors*, -which are used to control compatiblity support for pickle stream +which are used to control compatibility support for pickle stream generated by Python 2. If *fix_imports* is True, pickle will try to map the old Python 2 names to the new names used in Python 3. The *encoding* and *errors* tell pickle how to decode 8-bit string @@ -6533,7 +6533,7 @@ static int _pickle_Unpickler___init___impl(UnpicklerObject *self, PyObject *file, int fix_imports, const char *encoding, const char *errors) -/*[clinic end generated code: output=e2c8ce748edc57b0 input=04ece661aa884837]*/ +/*[clinic end generated code: output=e2c8ce748edc57b0 input=f9b7da04f5f4f335]*/ { _Py_IDENTIFIER(persistent_load); @@ -7066,7 +7066,7 @@ binary file object opened for reading, an io.BytesIO object, or any other custom object that meets this interface. Optional keyword arguments are *fix_imports*, *encoding* and *errors*, -which are used to control compatiblity support for pickle stream +which are used to control compatibility support for pickle stream generated by Python 2. If *fix_imports* is True, pickle will try to map the old Python 2 names to the new names used in Python 3. The *encoding* and *errors* tell pickle how to decode 8-bit string @@ -7078,7 +7078,7 @@ string instances as bytes objects. static PyObject * _pickle_load_impl(PyModuleDef *module, PyObject *file, int fix_imports, const char *encoding, const char *errors) -/*[clinic end generated code: output=798f1c57cb2b4eb1 input=2df7c7a1e6742204]*/ +/*[clinic end generated code: output=798f1c57cb2b4eb1 input=01b44dd3fc07afa7]*/ { PyObject *result; UnpicklerObject *unpickler = _Unpickler_New(); @@ -7120,7 +7120,7 @@ protocol argument is needed. Bytes past the pickled object's representation are ignored. Optional keyword arguments are *fix_imports*, *encoding* and *errors*, -which are used to control compatiblity support for pickle stream +which are used to control compatibility support for pickle stream generated by Python 2. If *fix_imports* is True, pickle will try to map the old Python 2 names to the new names used in Python 3. The *encoding* and *errors* tell pickle how to decode 8-bit string @@ -7132,7 +7132,7 @@ string instances as bytes objects. static PyObject * _pickle_loads_impl(PyModuleDef *module, PyObject *data, int fix_imports, const char *encoding, const char *errors) -/*[clinic end generated code: output=61e9cdb01e36a736 input=f57f0fdaa2b4cb8b]*/ +/*[clinic end generated code: output=61e9cdb01e36a736 input=70605948a719feb9]*/ { PyObject *result; UnpicklerObject *unpickler = _Unpickler_New(); |
