summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:28:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:28:43 (GMT)
commit56a6d855e2b93b0eb39a3b291ef43b2d03c5e986 (patch)
treeaa94b63e1cd81a03b4d96f6b9d29693f02dcc631 /Misc
parentb491e0521fd6e1a2e6f3e6354a2a296c7c8a2915 (diff)
downloadcpython-56a6d855e2b93b0eb39a3b291ef43b2d03c5e986.zip
cpython-56a6d855e2b93b0eb39a3b291ef43b2d03c5e986.tar.gz
cpython-56a6d855e2b93b0eb39a3b291ef43b2d03c5e986.tar.bz2
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/HISTORY4
-rw-r--r--Misc/NEWS6
2 files changed, 5 insertions, 5 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 88e8a6b..8370d8e 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -3972,7 +3972,7 @@ Tests
- Issue #12041: Make test_wait3 more robust.
- Issue #11873: Change regex in test_compileall to fix occasional failures when
- when the randomly generated temporary path happened to match the regex.
+ the randomly generated temporary path happened to match the regex.
- Issue #11958: Fix FTP tests for IPv6, bind to "::1" instead of "localhost".
Patch written by Charles-Francois Natali.
@@ -14018,7 +14018,7 @@ Core and builtins
- When method objects have an attribute that can be satisfied either
by the function object or by the method object, the function
object's attribute usually wins. Christian Tismer pointed out that
- that this is really a mistake, because this only happens for special
+ this is really a mistake, because this only happens for special
methods (like __reduce__) where the method object's version is
really more appropriate than the function's attribute. So from now
on, all method attributes will have precedence over function
diff --git a/Misc/NEWS b/Misc/NEWS
index 9cac209..390a69a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1362,7 +1362,7 @@ Library
- Issue #15304: concurrent.futures.wait() can block forever even if
Futures have completed. Patch by Glenn Langford.
-- Issue #14455: plistlib: fix serializing integers integers in the range
+- Issue #14455: plistlib: fix serializing integers in the range
of an unsigned long long but outside of the range of signed long long for
binary plist files.
@@ -1373,7 +1373,7 @@ IDLE
Patch mostly by Serhiy Storchaka.
- Update the python.gif icon for the Idle classbrowser and pathbowser
- from the old green snake to the new new blue and yellow snakes.
+ from the old green snake to the new blue and yellow snakes.
- Issue #17721: Remove non-functional configuration dialog help button until we
make it actually gives some help when clicked. Patch by Guilherme Simões.
@@ -2654,7 +2654,7 @@ Library
reside in the os module.
- Issue #19205: Don't import the 're' module in site and sysconfig module to
- to speed up interpreter start.
+ speed up interpreter start.
- Issue #9548: Add a minimal "_bootlocale" module that is imported by the
_io module instead of the full locale module.