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/clinic/_pickle.c.h | |
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/clinic/_pickle.c.h')
-rw-r--r-- | Modules/clinic/_pickle.c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/clinic/_pickle.c.h b/Modules/clinic/_pickle.c.h index a9f0c42..ab4d205 100644 --- a/Modules/clinic/_pickle.c.h +++ b/Modules/clinic/_pickle.c.h @@ -264,7 +264,7 @@ PyDoc_STRVAR(_pickle_Unpickler___init____doc__, "other custom object that meets this interface.\n" "\n" "Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n" -"which are used to control compatiblity support for pickle stream\n" +"which are used to control compatibility support for pickle stream\n" "generated by Python 2. If *fix_imports* is True, pickle will try to\n" "map the old Python 2 names to the new names used in Python 3. The\n" "*encoding* and *errors* tell pickle how to decode 8-bit string\n" @@ -466,7 +466,7 @@ PyDoc_STRVAR(_pickle_load__doc__, "other custom object that meets this interface.\n" "\n" "Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n" -"which are used to control compatiblity support for pickle stream\n" +"which are used to control compatibility support for pickle stream\n" "generated by Python 2. If *fix_imports* is True, pickle will try to\n" "map the old Python 2 names to the new names used in Python 3. The\n" "*encoding* and *errors* tell pickle how to decode 8-bit string\n" @@ -512,7 +512,7 @@ PyDoc_STRVAR(_pickle_loads__doc__, "representation are ignored.\n" "\n" "Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n" -"which are used to control compatiblity support for pickle stream\n" +"which are used to control compatibility support for pickle stream\n" "generated by Python 2. If *fix_imports* is True, pickle will try to\n" "map the old Python 2 names to the new names used in Python 3. The\n" "*encoding* and *errors* tell pickle how to decode 8-bit string\n" @@ -545,4 +545,4 @@ _pickle_loads(PyModuleDef *module, PyObject *args, PyObject *kwargs) exit: return return_value; } -/*[clinic end generated code: output=aecd61660d1cf31d input=a9049054013a1b77]*/ +/*[clinic end generated code: output=a7169d4fbbeef827 input=a9049054013a1b77]*/ |