diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-02 10:11:18 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-02 10:11:18 (GMT) |
commit | 0b7d84de6b3ec5264392e3bf7d3900b003cbeffd (patch) | |
tree | 12987b101c150c8f44514c5a1421f3fa168c82d4 /Misc | |
parent | fa6de5cddf9cd2029b7c2a0fe8b4c5ef27a1273e (diff) | |
parent | e26da7c03a714faa115fe6b708ef0730119aa4b3 (diff) | |
download | cpython-0b7d84de6b3ec5264392e3bf7d3900b003cbeffd.zip cpython-0b7d84de6b3ec5264392e3bf7d3900b003cbeffd.tar.gz cpython-0b7d84de6b3ec5264392e3bf7d3900b003cbeffd.tar.bz2 |
Issue #27171: Merge typo fixes from 3.5
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/HISTORY | 18 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 11 insertions, 11 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index b9cb899..6782333 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -1834,7 +1834,7 @@ Core and Builtins objects. Initial patch by Matthias Troffaes. - Fix OSError.__init__ and OSError.__new__ so that each of them can be - overriden and take additional arguments (followup to issue #12555). + overridden and take additional arguments (followup to issue #12555). - Fix the fix for issue #12149: it was incorrect, although it had the side effect of appearing to resolve the issue. Thanks to Mark Shannon for @@ -2053,7 +2053,7 @@ Core and Builtins given, produce an informative error message which includes the name(s) of the missing arguments. -- Issue #12370: Fix super with no arguments when __class__ is overriden in the +- Issue #12370: Fix super with no arguments when __class__ is overridden in the class body. - Issue #12084: os.stat on Windows now works properly with relative symbolic @@ -7273,7 +7273,7 @@ Library messages parsed by email.Parser.HeaderParser. - Issue #7361: Importlib was not properly checking the number of bytes in - bytecode file when it was less then 8 bytes. + bytecode file when it was less than 8 bytes. - Issue #7633: In the decimal module, Context class methods (with the exception of canonical and is_canonical) now accept instances of int and long wherever a @@ -7709,7 +7709,7 @@ Extension Modules - Issue #7900: The getgroups(2) system call on MacOSX behaves rather oddly compared to other unix systems. In particular, os.getgroups() does not reflect - any changes made using os.setgroups() but basicly always returns the same + any changes made using os.setgroups() but basically always returns the same information as the id command. os.getgroups() can now return more than 16 groups on MacOSX. @@ -7728,7 +7728,7 @@ Extension Modules - Issue #1578269: Implement os.symlink for Windows 6.0+. Patch by Jason R. Coombs. -- In struct.pack, correctly propogate exceptions from computing the truth of an +- In struct.pack, correctly propagate exceptions from computing the truth of an object in the '?' format. - Issue #9000: datetime.timezone objects now have eval-friendly repr. @@ -8215,7 +8215,7 @@ Build added LIBS to OS X framework builds. - Issue #5809: Specifying both --enable-framework and --enable-shared is - an error. Configure now explicity tells you about this. + an error. Configure now explicitly tells you about this. @@ -9209,7 +9209,7 @@ Library been backported to help facilitate transitions from 2.7 to 3.1. - Issue #1885: distutils. When running sdist with --formats=tar,gztar - the tar file was overriden by the gztar one. + the tar file was overridden by the gztar one. - Issue #4863: distutils.mwerkscompiler has been removed. @@ -10679,7 +10679,7 @@ Library - Removed the 'new' module. -- Removed all types from the 'types' module that are easily accessable +- Removed all types from the 'types' module that are easily accessible through builtins. @@ -20921,7 +20921,7 @@ Fri Mar 26 22:36:00 1999 Fred Drake <fdrake@eric.cnri.reston.va.us> * Tools/scripts/dutree.py: During display, if EPIPE is raised, it's probably because a pager was - killed. Discard the error in that case, but propogate it otherwise. + killed. Discard the error in that case, but propagate it otherwise. Fri Mar 26 16:20:45 1999 Guido van Rossum <guido@eric.cnri.reston.va.us> @@ -7862,8 +7862,8 @@ Library error message has been removed. Patch by Ram Rachum. - Issue #18080: When building a C extension module on OS X, if the compiler - is overriden with the CC environment variable, use the new compiler as - the default for linking if LDSHARED is not also overriden. This restores + is overridden with the CC environment variable, use the new compiler as + the default for linking if LDSHARED is not also overridden. This restores Distutils behavior introduced in 3.2.3 and inadvertently dropped in 3.3.0. - Issue #18113: Fixed a refcount leak in the curses.panel module's |