summaryrefslogtreecommitdiff
path: root/Lib/doctest.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-14 01:14:25 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-11-14 01:14:25 +0000
commit32acc16cdab1e890db17c79a5d32c2379800722d (patch)
tree51d3b4f5afa8351490051816749d198744a533e1 /Lib/doctest.py
parentfa9ea046732eff86408aba477d557c8fc92bc864 (diff)
parent2e4571a456c32af964d48b4bf70a9a53d27d10d6 (diff)
downloadcpython-git-32acc16cdab1e890db17c79a5d32c2379800722d.tar.gz
Merge typo and grammar fixes from 3.4 into 3.5
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r--Lib/doctest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py
index 96ab0c403b..409472384d 100644
--- a/Lib/doctest.py
+++ b/Lib/doctest.py
@@ -1575,7 +1575,7 @@ class OutputChecker:
# If `want` contains hex-escaped character such as "\u1234",
# then `want` is a string of six characters(e.g. [\,u,1,2,3,4]).
- # On the other hand, `got` could be an another sequence of
+ # On the other hand, `got` could be another sequence of
# characters such as [\u1234], so `want` and `got` should
# be folded to hex-escaped ASCII string to compare.
got = self._toAscii(got)