diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:17:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-13 14:17:24 (GMT) |
commit | 82f34ada45f96c13eb68927d6beccdcbab2c77b3 (patch) | |
tree | 136839c19a7d640d61b84b04129a76e0063b87ba /Modules | |
parent | 38dc250521d2c34f58537b25301a0ac9a4bb6c85 (diff) | |
download | cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.zip cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.gz cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.bz2 |
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ctypes/_ctypes.c | 2 |
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. */ |