summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-07 11:13:55 (GMT)
commit585a6acfef1a03955bc2561aab7b2acfbb6bb2d4 (patch)
treecd3684ef639760f403da82b1448786ebd9c8379d /Misc/NEWS
parent6568714366e8c7c7222681a5ddcc13c57b7495a2 (diff)
parentec1aa5c2a1d0848351dd9d7d2758c553f18e56b2 (diff)
downloadcpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.zip
cpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.gz
cpython-585a6acfef1a03955bc2561aab7b2acfbb6bb2d4.tar.bz2
Merge typo fixes from 3.5
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4209f07..daa40fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -421,7 +421,7 @@ Build
-----
- Issue #24915: Add LLVM support for PGO builds and use the test suite to
- generate the profile data. Initiial patch by Alecsandru Patrascu of Intel.
+ generate the profile data. Initial patch by Alecsandru Patrascu of Intel.
- Issue #24910: Windows MSIs now have unique display names.
@@ -1830,7 +1830,7 @@ Core and Builtins
type) can now be weakref'ed. Patch by Wei Wu.
- Issue #22077: Improve index error messages for bytearrays, bytes, lists,
- and tuples by adding 'or slices'. Added ', not <typename' for bytearrays.
+ and tuples by adding 'or slices'. Added ', not <typename>' for bytearrays.
Original patch by Claudiu Popa.
- Issue #20179: Apply Argument Clinic to bytes and bytearray.
@@ -1854,7 +1854,7 @@ Core and Builtins
engine friendly) error messages when "exec" and "print" are used as
statements.
-- Issue #21642: If the conditional if-else expression, allow an integer written
+- Issue #21642: In the conditional if-else expression, allow an integer written
with no space between itself and the ``else`` keyword (e.g. ``True if 42else
False``) to be valid syntax.