summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-30 04:04:50 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-30 04:04:50 (GMT)
commita90a4a96517fe25b57246083076b247f417d737d (patch)
treeeb3cd314fea55c06d6edf6b62a93b702c97bb8e3 /Modules
parentf45d27bcc316c3af4fb2924d1dfa8da493e9941f (diff)
downloadcpython-a90a4a96517fe25b57246083076b247f417d737d.zip
cpython-a90a4a96517fe25b57246083076b247f417d737d.tar.gz
cpython-a90a4a96517fe25b57246083076b247f417d737d.tar.bz2
Issue #27125: Remove duplicated words from documentation and comments
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/_ctypes.c2
-rw-r--r--Modules/_pickle.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c
index 9426128..2e01323 100644
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -49,7 +49,7 @@ from_address(addr)
from_param(obj)
- typecheck and convert a Python object into a C function call parameter
- the result may be an instance of the type, or an integer or tuple
+ The result may be an instance of the type, or an integer or tuple
(typecode, value[, obj])
instance methods/properties
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index 9b8b042..e52da37 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -550,7 +550,7 @@ typedef struct PicklerObject {
int bin; /* Boolean, true if proto > 0 */
int framing; /* True when framing is enabled, proto >= 4 */
Py_ssize_t frame_start; /* Position in output_buffer where the
- where the current frame begins. -1 if there
+ current frame begins. -1 if there
is no frame currently open. */
Py_ssize_t buf_size; /* Size of the current buffered pickle data */