summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-13 14:17:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-13 14:17:24 (GMT)
commit82f34ada45f96c13eb68927d6beccdcbab2c77b3 (patch)
tree136839c19a7d640d61b84b04129a76e0063b87ba /Include
parent38dc250521d2c34f58537b25301a0ac9a4bb6c85 (diff)
downloadcpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.zip
cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.gz
cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.bz2
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
Diffstat (limited to 'Include')
-rw-r--r--Include/dynamic_annotations.h2
-rw-r--r--Include/unicodeobject.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/dynamic_annotations.h b/Include/dynamic_annotations.h
index d63c5db..0bd1a83 100644
--- a/Include/dynamic_annotations.h
+++ b/Include/dynamic_annotations.h
@@ -150,7 +150,7 @@
/* Report that a new memory at "address" of size "size" has been allocated.
This might be used when the memory has been retrieved from a free list and
- is about to be reused, or when a the locking discipline for a variable
+ is about to be reused, or when the locking discipline for a variable
changes. */
#define _Py_ANNOTATE_NEW_MEMORY(address, size) \
AnnotateNewMemory(__FILE__, __LINE__, address, size)
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 057b195..729f584 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -605,7 +605,7 @@ PyAPI_FUNC(PyObject*) PyUnicode_New(
);
#endif
-/* Initializes the canonical string representation from a the deprecated
+/* Initializes the canonical string representation from the deprecated
wstr/Py_UNICODE representation. This function is used to convert Unicode
objects which were created using the old API to the new flexible format
introduced with PEP 393.