summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-13 14:20:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-13 14:20:31 (GMT)
commit610bc6a211be33b390a9910943f1f9fb7656f634 (patch)
tree9498dd48c73ea91305805a6e1967f32becd39d70 /Modules
parent458fc6f98ca9a838af5dcdff64fd48ae3eb64fa9 (diff)
parent82f34ada45f96c13eb68927d6beccdcbab2c77b3 (diff)
downloadcpython-610bc6a211be33b390a9910943f1f9fb7656f634.zip
cpython-610bc6a211be33b390a9910943f1f9fb7656f634.tar.gz
cpython-610bc6a211be33b390a9910943f1f9fb7656f634.tar.bz2
merge 3.4 (#23221)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_ctypes/_ctypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/_ctypes.c b/Modules/_ctypes/_ctypes.c
index fd00e53..f771473 100644
--- a/Modules/_ctypes/_ctypes.c
+++ b/Modules/_ctypes/_ctypes.c
@@ -4830,7 +4830,7 @@ Pointer_set_contents(CDataObject *self, PyObject *value, void *closure)
*(void **)self->b_ptr = dst->b_ptr;
/*
- A Pointer instance must keep a the value it points to alive. So, a
+ A Pointer instance must keep the value it points to alive. So, a
pointer instance has b_length set to 2 instead of 1, and we set
'value' itself as the second item of the b_objects list, additionally.
*/