summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-12-18 05:41:55 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-12-18 05:41:55 (GMT)
commitfc29c88b5f299f0fad9919dd92628f810b4b4711 (patch)
treeffb98421a6dcb7414bc943d008674b0e440c57de /Misc
parent3e8d9413eb6b5126de3181c30ed3edea399d4934 (diff)
parent59b0eb524f6b476db0805ba0a83661122a3fa2fe (diff)
downloadcpython-fc29c88b5f299f0fad9919dd92628f810b4b4711.zip
cpython-fc29c88b5f299f0fad9919dd92628f810b4b4711.tar.gz
cpython-fc29c88b5f299f0fad9919dd92628f810b4b4711.tar.bz2
Issue #28987: Merge doc and comment fixes from 3.6
Diffstat (limited to 'Misc')
-rw-r--r--Misc/HISTORY2
-rw-r--r--Misc/NEWS6
2 files changed, 4 insertions, 4 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 6cadaec..73ec926 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -6495,7 +6495,7 @@ Core and Builtins
NULL).
- Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse
- the format string in the 3 steps, fix crashs on invalid format strings.
+ the format string in the 3 steps, fix crashes on invalid format strings.
- Issue #13007: whichdb should recognize gdbm 1.9 magic numbers.
diff --git a/Misc/NEWS b/Misc/NEWS
index cf5acfe..4e623a1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,14 +23,14 @@ Core and Builtins
to/from UTF-8, instead of the locale encoding to avoid inconsistencies with
os.fsencode() and os.fsdecode() which are already using UTF-8.
-- Issue #28991: functools.lru_cache() was susceptible to an obscure $
+- Issue #28991: functools.lru_cache() was susceptible to an obscure reentrancy
bug triggerable by a monkey-patched len() function.
- Issue #28147: Fix a memory leak in split-table dictionaries: setattr()
must not convert combined table into split table. Patch written by INADA
Naoki.
-- Issue #28739: f-string expressions no longer accepted as docstrings and
+- Issue #28739: f-string expressions are no longer accepted as docstrings and
by ast.literal_eval() even if they do not include expressions.
- Issue #28512: Fixed setting the offset attribute of SyntaxError by
@@ -497,7 +497,7 @@ Library
Windows
-------
-- Issue #25778: winreg does not truncase string correctly (Patch by Eryk Sun)
+- Issue #25778: winreg does not truncate string correctly (Patch by Eryk Sun)
- Issue #28896: Deprecate WindowsRegistryFinder and disable it by default