summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-29 09:05:06 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-29 09:05:06 (GMT)
commite501a93c18085a0ae0000a759438dcf3c162ddb6 (patch)
tree6ce860fadb4cd92c8c1df44297b07dde7c41d1d1 /Objects/object.c
parent2bac3b778f0a3efe374334b9694e99ed48431414 (diff)
parent8d56c026a5dd724318be005465366d5140fa6fe7 (diff)
downloadcpython-e501a93c18085a0ae0000a759438dcf3c162ddb6.zip
cpython-e501a93c18085a0ae0000a759438dcf3c162ddb6.tar.gz
cpython-e501a93c18085a0ae0000a759438dcf3c162ddb6.tar.bz2
Issue #27125: Merge typo fixes from 3.5
Also merge changes from Issue #27117; no actual code changes to 3.6.
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index cc1b2ff..c83c8ec 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1853,7 +1853,7 @@ _PyObject_DebugTypeStats(FILE *out)
/* These methods are used to control infinite recursion in repr, str, print,
etc. Container objects that may recursively contain themselves,
- e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
+ e.g. builtin dictionaries and lists, should use Py_ReprEnter() and
Py_ReprLeave() to avoid infinite recursion.
Py_ReprEnter() returns 0 the first time it is called for a particular