summaryrefslogtreecommitdiffstats
path: root/Python/graminit.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-11410: Standardize and use symbol visibility attributes across POSIX and ...Vinay Sajip2019-10-151-2/+3
* bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-1...Pablo Galindo2019-06-031-1/+1
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-204/+418
* use `const` in graminit.c (GH-12713)tyomitch2019-04-231-410/+410
* bpo-36623: Clean parser headers and include files (GH-12253)Pablo Galindo2019-04-131-1/+0
* Remove d_initial from the parser as it is unused (GH-12212)tyomitch2019-03-091-92/+92
* bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum2019-03-071-105/+105
* bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814)Pablo Galindo2019-03-011-846/+832
* bpo-35877: Make parenthesis optional for named expression in while statement ...Xtreak2019-02-011-1/+1
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-311-412/+613
* bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-1...Ivan Levkivskyi2019-01-251-3/+4
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-241-533/+557
* bpo-32117: Allow tuple unpacking in return and yield statements (gh-4509)David Cuthbert2018-09-221-3/+3
* closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)Benjamin Peterson2018-09-121-1/+1
* bpo-30406: Make async and await proper keywords (#1669)Jelle Zijlstra2017-10-061-150/+163
* Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-16/+21
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-892/+919
* Issue #9232: Support trailing commas in function declarations.Robert Collins2015-08-111-46/+60
* Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'.Yury Selivanov2015-08-051-1/+1
* allow test node after ** in calls (closes #24176)Benjamin Peterson2015-05-161-8/+4
* PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-121-1219/+1277
* PEP 448: additional unpacking generalizations (closes #2292)Benjamin Peterson2015-05-061-78/+76
* PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-101-216/+219
* Backed out changeset 521232b05b97Benjamin Peterson2013-03-201-264/+241
* fix compiler warningBenjamin Peterson2013-03-201-241/+264
* Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenName...Meador Inge2012-01-161-15/+15
|\
| * Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenName...Meador Inge2012-01-161-15/+15
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-86/+104
|/
* Regenerate Python/graminit.c.Mark Dickinson2010-07-121-18/+82
* Merged revisions 81220 via svnmerge fromVictor Stinner2010-05-151-1227/+1227
* fix an ambiguity in the grammar from the implementation of extended unpackingBenjamin Peterson2009-09-271-829/+839
* Merged revisions 72924 via svnmerge fromGeorg Brandl2009-05-251-19/+20
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-011-97/+99
* Merged revisions 68523 via svnmerge fromMartin v. Löwis2009-01-111-0/+1
* allow keyword args after *args in a function callBenjamin Peterson2008-08-191-2/+3
* Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-...Neal Norwitz2008-04-151-0/+2
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-30/+21
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-5/+15
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-58/+64
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-1115/+1129
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-1135/+1053
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-363/+381
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-501/+383
* Looks like this file wasn't checked in.Guido van Rossum2007-03-271-168/+170
* Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...Georg Brandl2007-03-181-78/+71
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-1/+1
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-271-789/+809
* Essential changes for print function changes.Guido van Rossum2007-02-091-976/+926
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
.Vv0gfH.rst?h=master&id=9a448855b51b264d678e3ba3c168034c221806e2'>Misc/NEWS.d/next/IDLE/2019-03-06-14-47-57.bpo-23205.Vv0gfH.rst2
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-03-10-00-07-46.bpo-36176.jk_vv6.rst2
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-03-21-22-43-21.bpo-36396.xSTX-I.rst2
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-03-23-01-45-56.bpo-36405.m7Wv1F.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2018-11-09-12-45-28.bpo-35198.EJ8keW.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2018-12-21-09-54-30.bpo-21478.5gsXtc.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2018-12-30-14-35-19.bpo-35121.oWmiGU.rst3
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-05-16-16-20.bpo-35661.H_UOXc.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-09-23-43-08.bpo-35493.kEcRGE.rst3
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-11-08-47-58.bpo-35715.Wi3gl0.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-21-13-56-55.bpo-35802.6633PE.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-28-10-19-40.bpo-35843.7rXGQE.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-06-12-07-46.bpo-30670.yffB3F.rst4
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-10-16-49-16.bpo-21269.Fqi7VH.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-16-07-11-02.bpo-35899.cjfn5a.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-19-19-53-46.bpo-36043.l867v0.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-23-06-49-06.bpo-36091.26o4Lc.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-25-13-21-43.bpo-36106.VuhEiQ.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-25-23-04-00.bpo-35178.NA_rXa.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-26-11-34-44.bpo-35652.6KRJu_.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-26-22-41-38.bpo-36130._BnZOo.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-01-16-10-01.bpo-36103.n6VgXL.rst3
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-03-11-37-09.bpo-36169.8nWJy7.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-04-10-42-46.bpo-36179.jEyuI-.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-06-13-07-29.bpo-36139.6kedum.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-06-13-21-33.bpo-35807.W7mmu3.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-08-13-32-21.bpo-36235._M72wU.rst4
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-09-18-01-24.bpo-36251.zOp9l0.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-11-22-06-36.bpo-35931.Qp_Tbe.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-12-21-02-55.bpo-36280.mOd3iH.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-13-14-14-36.bpo-36272.f3l2IG.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-13-14-55-02.bpo-31904.834kfY.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-14-01-09-59.bpo-36285.G-usj8.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-14-16-25-17.bpo-36268.MDXLw6.rst3
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-15-13-54-07.bpo-36298.amEVK2.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-15-21-41-22.bpo-36297.Gz9ZfU.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-16-13-40-59.bpo-36321.s6crQx.rst5
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-17-01-17-45.bpo-36324.dvNrRe.rst2
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-17-16-43-29.bpo-34745.nOfm7_.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-18-01-08-14.bpo-36320.-06b9_.rst3
-rw-r--r--Misc/NEWS.d/next/Library/2019-03-23-10-25-07.bpo-36401.hYpVBS.rst2
-rw-r--r--Misc/NEWS.d/next/Security/2018-10-31-15-39-17.bpo-35121.EgHv9k.rst4
-rw-r--r--Misc/NEWS.d/next/Security/2019-03-06-09-38-40.bpo-36216.6q1m4a.rst3
-rw-r--r--Misc/NEWS.d/next/Tests/2019-02-26-12-51-35.bpo-36123.QRhhRS.rst1
-rw-r--r--Misc/NEWS.d/next/Tests/2019-02-28-18-33-29.bpo-29571.r6b9fr.rst3
-rw-r--r--Misc/NEWS.d/next/Tests/2019-03-08-12-53-37.bpo-36234.NRVK6W.rst2
-rw-r--r--Misc/NEWS.d/next/Tools-Demos/2017-12-19-20-42-36.bpo-32217.axXcjA.rst1
-rw-r--r--Misc/NEWS.d/next/Tools-Demos/2019-03-04-02-09-09.bpo-35132.1R_pnL.rst1
-rw-r--r--Misc/NEWS.d/next/Windows/2019-02-24-07-52-39.bpo-24643.PofyiS.rst1
-rw-r--r--Misc/NEWS.d/next/Windows/2019-03-11-09-33-47.bpo-36264.rTzWce.rst2
-rw-r--r--Misc/NEWS.d/next/Windows/2019-03-16-16-51-17.bpo-36312.Niwm-T.rst2
-rw-r--r--README.rst2
91 files changed, 875 insertions, 184 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h
index e9edf46..610c8a9 100644
--- a/Include/patchlevel.h
+++ b/Include/patchlevel.h
@@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 8
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
-#define PY_RELEASE_SERIAL 2
+#define PY_RELEASE_SERIAL 3
/* Version as a string */
-#define PY_VERSION "3.8.0a2+"
+#define PY_VERSION "3.8.0a3"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py
index c2f9fa8..3e11f54 100644
--- a/Lib/pydoc_data/topics.py
+++ b/Lib/pydoc_data/topics.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Autogenerated by Sphinx on Mon Feb 25 13:03:43 2019
+# Autogenerated by Sphinx on Mon Mar 25 20:32:23 2019
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
@@ -11436,15 +11436,6 @@ topics = {'assert': 'The "assert" statement\n'
'is\n'
' the original function object.\n'
'\n'
- ' When a user-defined method object is created by retrieving\n'
- ' another method object from a class or instance, the behaviour '
- 'is\n'
- ' the same as for a function object, except that the '
- '"__func__"\n'
- ' attribute of the new instance is not the original method '
- 'object\n'
- ' but its "__func__" attribute.\n'
- '\n'
' When an instance method object is created by retrieving a '
'class\n'
' method object from a class or instance, its "__self__" '
diff --git a/Misc/NEWS.d/3.8.0a3.rst b/Misc/NEWS.d/3.8.0a3.rst
new file mode 100644
index 0000000..4962464
--- /dev/null
+++ b/Misc/NEWS.d/3.8.0a3.rst
@@ -0,0 +1,871 @@
+.. bpo: 36216
+.. date: 2019-03-06-09-38-40
+.. nonce: 6q1m4a
+.. release date: 2019-03-25
+.. section: Security
+
+Changes urlsplit() to raise ValueError when the URL contains characters that
+decompose under IDNA encoding (NFKC-normalization) into characters that
+affect how the URL is parsed.
+
+..
+
+.. bpo: 35121
+.. date: 2018-10-31-15-39-17
+.. nonce: EgHv9k
+.. section: Security
+
+Don't send cookies of domain A without Domain attribute to domain B when
+domain A is a suffix match of domain B while using a cookiejar with
+:class:`http.cookiejar.DefaultCookiePolicy` policy. Patch by Karthikeyan
+Singaravelan.
+
+..
+
+.. bpo: 36421
+.. date: 2019-03-24-21-33-22
+.. nonce: gJ2Pv9
+.. section: Core and Builtins
+
+Fix a possible double decref in _ctypes.c's ``PyCArrayType_new()``.
+
+..
+
+.. bpo: 36412
+.. date: 2019-03-23-19-51-09
+.. nonce: C7acGn
+.. section: Core and Builtins
+
+Fix a possible crash when creating a new dictionary.
+
+..
+
+.. bpo: 36398
+.. date: 2019-03-21-22-19-38
+.. nonce: B_jXGe
+.. section: Core and Builtins
+
+Fix a possible crash in ``structseq_repr()``.
+
+..
+
+.. bpo: 12477
+.. date: 2019-03-21-00-24-18
+.. nonce: OZHa0t
+.. section: Core and Builtins
+
+Fix bug in parsermodule when parsing a state in a DFA that has two or more
+arcs with labels of the same type. Patch by Pablo Galindo.
+
+..
+
+.. bpo: 36365
+.. date: 2019-03-19-15-58-23
+.. nonce: jHaErz
+.. section: Core and Builtins
+
+repr(structseq) is no longer limited to 512 bytes.
+
+..
+
+.. bpo: 36374
+.. date: 2019-03-19-15-46-42
+.. nonce: EWKMZE
+.. section: Core and Builtins
+
+Fix a possible null pointer dereference in ``merge_consts_recursive()``.
+Patch by Zackery Spytz.
+
+..
+
+.. bpo: 36236
+.. date: 2019-03-19-03-08-26
+.. nonce: 5qN9qK
+.. section: Core and Builtins
+
+At Python initialization, the current directory is no longer prepended to
+:data:`sys.path` if it has been removed.
+
+..
+
+.. bpo: 36352
+.. date: 2019-03-19-02-36-40
+.. nonce: qj2trz
+.. section: Core and Builtins
+
+Python initialization now fails with an error, rather than silently
+truncating paths, if a path is too long.
+
+..
+
+.. bpo: 36301
+.. date: 2019-03-19-00-54-31
+.. nonce: xvOCJb
+.. section: Core and Builtins
+
+Python initialization now fails if decoding ``pybuilddir.txt`` configuration
+file fails at startup.
+
+..
+
+.. bpo: 36333
+.. date: 2019-03-18-10-56-53
+.. nonce: 4dqemZ
+.. section: Core and Builtins
+
+Fix leak in _PyRuntimeState_Fini. Contributed by Stéphane Wirtel.
+
+..
+
+.. bpo: 36332
+.. date: 2019-03-18-09-27-54
+.. nonce: yEC-Vz
+.. section: Core and Builtins
+
+The builtin :func:`compile` can now handle AST objects that contain
+assignment expressions. Patch by Pablo Galindo.
+
+..
+
+.. bpo: 36282
+.. date: 2019-03-13-22-47-28
+.. nonce: zs7RKP
+.. section: Core and Builtins
+
+Improved error message for too much positional arguments in some builtin
+functions.
+
+..
+
+.. bpo: 30040
+.. date: 2019-03-11-22-30-56
+.. nonce: W9z8X7
+.. section: Core and Builtins
+
+New empty dict uses fewer memory for now. It used more memory than empty
+dict created by ``dict.clear()``. And empty dict creation and deletion is
+about 2x faster. Patch by Inada Naoki.
+
+..
+
+.. bpo: 36262
+.. date: 2019-03-11-15-37-33
+.. nonce: v3N6Fz
+.. section: Core and Builtins
+
+Fix an unlikely memory leak on conversion from string to float in the
+function ``_Py_dg_strtod()`` used by ``float(str)``, ``complex(str)``,
+:func:`pickle.load`, :func:`marshal.load`, etc.
+
+..
+
+.. bpo: 36252
+.. date: 2019-03-09-15-47-05
+.. nonce: sCQFKq
+.. section: Core and Builtins
+
+Update Unicode databases to version 12.0.0.
+
+..
+
+.. bpo: 36218
+.. date: 2019-03-07-13-05-43
+.. nonce: dZemNt
+.. section: Core and Builtins
+
+Fix a segfault occuring when sorting a list of heterogeneous values. Patch
+contributed by Rémi Lapeyre and Elliot Gorokhovsky.
+
+..
+
+.. bpo: 36188
+.. date: 2019-03-04-18-05-31
+.. nonce: EuUZNz
+.. section: Core and Builtins
+
+Cleaned up left-over vestiges of Python 2 unbound method handling in method
+objects and documentation. Patch by Martijn Pieters
+
+..
+
+.. bpo: 36124
+.. date: 2019-03-01-13-48-01
+.. nonce: Blzxq1
+.. section: Core and Builtins
+
+Add a new interpreter-specific dict and expose it in the C-API via
+PyInterpreterState_GetDict(). This parallels PyThreadState_GetDict().
+However, extension modules should continue using PyModule_GetState() for
+their own internal per-interpreter state.
+
+..
+
+.. bpo: 35975
+.. date: 2019-02-27-16-49-08
+.. nonce: IescLY
+.. section: Core and Builtins
+
+Add a ``feature_version`` flag to ``ast.parse()`` (documented) and
+``compile()`` (hidden) that allows tweaking the parser to support older
+versions of the grammar. In particular, if ``feature_version`` is 5 or 6,
+the hacks for the ``async`` and ``await`` keyword from PEP 492 are
+reinstated. (For 7 or higher, these are unconditionally treated as keywords,
+but they are still special tokens rather than ``NAME`` tokens that the
+parser driver recognizes.)
+
+..
+
+.. bpo: 31904
+.. date: 2019-02-26-17-34-49
+.. nonce: R4KSj6
+.. section: Core and Builtins
+
+Use UTF-8 as the system encoding on VxWorks.
+
+..
+
+.. bpo: 36048
+.. date: 2019-02-20-08-51-04
+.. nonce: I3LJt9
+.. section: Core and Builtins
+
+The :meth:`~object.__index__` special method will be used instead of
+:meth:`~object.__int__` for implicit conversion of Python numbers to C
+integers. Using the ``__int__()`` method in implicit conversions has been
+deprecated.
+
+..
+
+.. bpo: 11814
+.. date: 2019-02-11-00-50-03
+.. nonce: M12CMH
+.. section: Core and Builtins
+
+Retire pgen and use a modified version of pgen2 to generate the parser.
+Patch by Pablo Galindo.
+
+..
+
+.. bpo: 36401
+.. date: 2019-03-23-10-25-07
+.. nonce: hYpVBS
+.. section: Library
+
+The class documentation created by pydoc now has a separate section for
+readonly properties.
+
+..
+
+.. bpo: 36320
+.. date: 2019-03-18-01-08-14
+.. nonce: -06b9_
+.. section: Library
+
+The typing.NamedTuple() class has deprecated the _field_types attribute in
+favor of the __annotations__ attribute which carried the same information.
+Also, both attributes were converted from OrderedDict to a regular dict.
+
+..
+
+.. bpo: 34745
+.. date: 2019-03-17-16-43-29
+.. nonce: nOfm7_
+.. section: Library
+
+Fix :mod:`asyncio` ssl memory issues caused by circular references
+
+..
+
+.. bpo: 36324
+.. date: 2019-03-17-01-17-45
+.. nonce: dvNrRe
+.. section: Library
+
+Add method to statistics.NormalDist for computing the inverse cumulative
+normal distribution.
+
+..
+
+.. bpo: 36321
+.. date: 2019-03-16-13-40-59
+.. nonce: s6crQx
+.. section: Library
+
+collections.namedtuple() misspelled the name of an attribute. To be
+consistent with typing.NamedTuple, the attribute name should have been
+"_field_defaults" instead of "_fields_defaults". For backwards
+compatibility, both spellings are now created. The misspelled version may
+be removed in the future.
+
+..
+
+.. bpo: 36297
+.. date: 2019-03-15-21-41-22
+.. nonce: Gz9ZfU
+.. section: Library
+
+"unicode_internal" codec is removed. It was deprecated since Python 3.3.
+Patch by Inada Naoki.
+
+..
+
+.. bpo: 36298
+.. date: 2019-03-15-13-54-07
+.. nonce: amEVK2
+.. section: Library
+
+Raise ModuleNotFoundError in pyclbr when a module can't be found. Thanks to
+'mental' for the bug report.
+
+..
+
+.. bpo: 36268
+.. date: 2019-03-14-16-25-17
+.. nonce: MDXLw6
+.. section: Library
+
+Switch the default format used for writing tars with mod:`tarfile` to the
+modern POSIX.1-2001 pax standard, from the vendor-specific GNU. Contributed
+by C.A.M. Gerlach.
+
+..
+
+.. bpo: 36285
+.. date: 2019-03-14-01-09-59
+.. nonce: G-usj8
+.. section: Library
+
+Fix integer overflows in the array module. Patch by Stephan Hohe.
+
+..
+
+.. bpo: 31904
+.. date: 2019-03-13-14-55-02
+.. nonce: 834kfY
+.. section: Library
+
+Add _signal module support for VxWorks.
+
+..
+
+.. bpo: 36272
+.. date: 2019-03-13-14-14-36
+.. nonce: f3l2IG
+.. section: Library
+
+:mod:`logging` does not silently ignore RecursionError anymore. Patch
+contributed by Rémi Lapeyre.
+
+..
+
+.. bpo: 36280
+.. date: 2019-03-12-21-02-55
+.. nonce: mOd3iH
+.. section: Library
+
+Add a kind field to ast.Constant. It is 'u' if the literal has a 'u' prefix
+(i.e. a Python 2 style unicode literal), else None.
+
+..
+
+.. bpo: 35931
+.. date: 2019-03-11-22-06-36
+.. nonce: Qp_Tbe
+.. section: Library
+
+The :mod:`pdb` ``debug`` command now gracefully handles all exceptions.
+
+..
+
+.. bpo: 36251
+.. date: 2019-03-09-18-01-24
+.. nonce: zOp9l0
+.. section: Library
+
+Fix format strings used for stderrprinter and re.Match reprs. Patch by
+Stephan Hohe.
+
+..
+
+.. bpo: 36235
+.. date: 2019-03-08-13-32-21
+.. nonce: _M72wU
+.. section: Library
+
+Fix ``CFLAGS`` in ``customize_compiler()`` of ``distutils.sysconfig``: when
+the ``CFLAGS`` environment variable is defined, don't override ``CFLAGS``
+variable with the ``OPT`` variable anymore. Initial patch written by David
+Malcolm.
+
+..
+
+.. bpo: 35807
+.. date: 2019-03-06-13-21-33
+.. nonce: W7mmu3
+.. section: Library
+
+Update ensurepip to install pip 19.0.3 and setuptools 40.8.0.
+
+..
+
+.. bpo: 36139
+.. date: 2019-03-06-13-07-29
+.. nonce: 6kedum
+.. section: Library
+
+Release GIL when closing :class:`~mmap.mmap` objects.
+
+..
+
+.. bpo: 36179
+.. date: 2019-03-04-10-42-46
+.. nonce: jEyuI-
+.. section: Library
+
+Fix two unlikely reference leaks in _hashopenssl. The leaks only occur in
+out-of-memory cases.
+
+..
+
+.. bpo: 36169
+.. date: 2019-03-03-11-37-09
+.. nonce: 8nWJy7
+.. section: Library
+
+Add overlap() method to statistics.NormalDist. Computes the overlapping
+coefficient for two normal distributions.
+
+..
+
+.. bpo: 36103
+.. date: 2019-03-01-16-10-01
+.. nonce: n6VgXL
+.. section: Library
+
+Default buffer size used by ``shutil.copyfileobj()`` is changed from 16 KiB
+to 64 KiB on non-Windows platform to reduce system call overhead.
+Contributed by Inada Naoki.
+
+..
+
+.. bpo: 36130
+.. date: 2019-02-26-22-41-38
+.. nonce: _BnZOo
+.. section: Library
+
+Fix ``pdb`` with ``skip=...`` when stepping into a frame without a
+``__name__`` global. Patch by Anthony Sottile.
+
+..
+
+.. bpo: 35652
+.. date: 2019-02-26-11-34-44
+.. nonce: 6KRJu_
+.. section: Library
+
+shutil.copytree(copy_function=...) erroneously pass DirEntry instead of a
+path string.
+
+..
+
+.. bpo: 35178
+.. date: 2019-02-25-23-04-00
+.. nonce: NA_rXa
+.. section: Library
+
+Ensure custom :func:`warnings.formatwarning` function can receive `line` as
+positional argument. Based on patch by Tashrif Billah.
+
+..
+
+.. bpo: 36106
+.. date: 2019-02-25-13-21-43
+.. nonce: VuhEiQ
+.. section: Library
+
+Resolve potential name clash with libm's sinpi(). Patch by Dmitrii
+Pasechnik.
+
+..
+
+.. bpo: 36091
+.. date: 2019-02-23-06-49-06
+.. nonce: 26o4Lc
+.. section: Library
+
+Clean up reference to async generator in Lib/types. Patch by Henry Chen.
+
+..
+
+.. bpo: 36043
+.. date: 2019-02-19-19-53-46
+.. nonce: l867v0
+.. section: Library
+
+:class:`FileCookieJar` supports :term:`path-like object`. Contributed by
+Stéphane Wirtel
+
+..
+
+.. bpo: 35899
+.. date: 2019-02-16-07-11-02
+.. nonce: cjfn5a
+.. section: Library
+
+Enum has been fixed to correctly handle empty strings and strings with
+non-Latin characters (ie. 'α', 'א') without crashing. Original patch
+contributed by Maxwell. Assisted by Stéphane Wirtel.
+
+..
+
+.. bpo: 21269
+.. date: 2019-02-10-16-49-16
+.. nonce: Fqi7VH
+.. section: Library
+
+Add ``args`` and ``kwargs`` properties to mock call objects. Contributed by
+Kumar Akshay.
+
+..
+
+.. bpo: 30670
+.. date: 2019-02-06-12-07-46
+.. nonce: yffB3F
+.. section: Library
+
+`pprint.pp` has been added to pretty-print objects with dictionary keys
+being sorted with their insertion order by default. Parameter *sort_dicts*
+has been added to `pprint.pprint`, `pprint.pformat` and
+`pprint.PrettyPrinter`. Contributed by Rémi Lapeyre.
+
+..
+
+.. bpo: 35843
+.. date: 2019-01-28-10-19-40
+.. nonce: 7rXGQE
+.. section: Library
+
+Implement ``__getitem__`` for ``_NamespacePath``. Patch by Anthony Sottile.
+
+..
+
+.. bpo: 35802
+.. date: 2019-01-21-13-56-55
+.. nonce: 6633PE
+.. section: Library
+
+Clean up code which checked presence of ``os.stat`` / ``os.lstat`` /
+``os.chmod`` which are always present. Patch by Anthony Sottile.
+
+..
+
+.. bpo: 35715
+.. date: 2019-01-11-08-47-58
+.. nonce: Wi3gl0
+.. section: Library
+
+Librates the return value of a ProcessPoolExecutor _process_worker after
+it's no longer needed to free memory
+
+..
+
+.. bpo: 35493
+.. date: 2019-01-09-23-43-08
+.. nonce: kEcRGE
+.. section: Library
+
+Use :func:`multiprocessing.connection.wait` instead of polling each 0.2
+seconds for worker updates in :class:`multiprocessing.Pool`. Patch by Pablo
+Galindo.
+
+..
+
+.. bpo: 35661
+.. date: 2019-01-05-16-16-20
+.. nonce: H_UOXc
+.. section: Library
+
+Store the venv prompt in pyvenv.cfg.
+
+..
+
+.. bpo: 35121
+.. date: 2018-12-30-14-35-19
+.. nonce: oWmiGU
+.. section: Library
+
+Don't set cookie for a request when the request path is a prefix match of
+the cookie's path attribute but doesn't end with "/". Patch by Karthikeyan
+Singaravelan.
+
+..
+
+.. bpo: 21478
+.. date: 2018-12-21-09-54-30
+.. nonce: 5gsXtc
+.. section: Library
+
+Calls to a child function created with :func:`unittest.mock.create_autospec`
+should propagate to the parent. Patch by Karthikeyan Singaravelan.
+
+..
+
+.. bpo: 35198
+.. date: 2018-11-09-12-45-28
+.. nonce: EJ8keW
+.. section: Library
+
+Fix C++ extension compilation on AIX
+
+..
+
+.. bpo: 36329
+.. date: 2019-03-17-20-01-41
+.. nonce: L5dJPD
+.. section: Documentation
+
+Declare the path of the Python binary for the usage of
+``Tools/scripts/serve.py`` when executing ``make -C Doc/ serve``.
+Contributed by Stéphane Wirtel
+
+..
+
+.. bpo: 36138
+.. date: 2019-03-02-00-40-57
+.. nonce: yfjNzG
+.. section: Documentation
+
+Improve documentation about converting datetime.timedelta to scalars.
+
+..
+
+.. bpo: 21314
+.. date: 2018-11-21-23-01-37
+.. nonce: PG33VT
+.. section: Documentation
+
+A new entry was added to the Core Language Section of the Programming FAQ,
+which explaines the usage of slash(/) in the signature of a function. Patch
+by Lysandros Nikolaou
+
+..
+
+.. bpo: 36234
+.. date: 2019-03-08-12-53-37
+.. nonce: NRVK6W
+.. section: Tests
+
+test_posix.PosixUidGidTests: add tests for invalid uid/gid type (str).
+Initial patch written by David Malcolm.
+
+..
+
+.. bpo: 29571
+.. date: 2019-02-28-18-33-29
+.. nonce: r6b9fr
+.. section: Tests
+
+Fix ``test_re.test_locale_flag()``: use ``locale.getpreferredencoding()``
+rather than ``locale.getlocale()`` to get the locale encoding. With some
+locales, ``locale.getlocale()`` returns the wrong encoding.
+
+..
+
+.. bpo: 36123
+.. date: 2019-02-26-12-51-35
+.. nonce: QRhhRS
+.. section: Tests
+
+Fix race condition in test_socket.
+
+..
+
+.. bpo: 36356
+.. date: 2019-03-18-23-49-15
+.. nonce: WNrwYI
+.. section: Build
+
+Fix leaks that led to build failure when configured with address sanitizer.
+
+..
+
+.. bpo: 36146
+.. date: 2019-03-01-17-49-22
+.. nonce: VeoyG7
+.. section: Build
+
+Add ``TEST_EXTENSIONS`` constant to ``setup.py`` to allow to not build test
+extensions like ``_testcapi``.
+
+..
+
+.. bpo: 36146
+.. date: 2019-02-28-18-09-01
+.. nonce: IwPJVT
+.. section: Build
+
+Fix setup.py on macOS: only add ``/usr/include/ffi`` to include directories
+of _ctypes, not for all extensions.
+
+..
+
+.. bpo: 31904
+.. date: 2019-02-21-14-48-31
+.. nonce: J82jY2
+.. section: Build
+
+Enable build system to cross-build for VxWorks RTOS.
+
+..
+
+.. bpo: 36312
+.. date: 2019-03-16-16-51-17
+.. nonce: Niwm-T
+.. section: Windows
+
+Fixed decoders for the following code pages: 50220, 50221, 50222, 50225,
+50227, 50229, 57002 through 57011, 65000 and 42.
+
+..
+
+.. bpo: 36264
+.. date: 2019-03-11-09-33-47
+.. nonce: rTzWce
+.. section: Windows
+
+Don't honor POSIX ``HOME`` in ``os.path.expanduser`` on windows. Patch by
+Anthony Sottile.
+
+..
+
+.. bpo: 24643
+.. date: 2019-02-24-07-52-39
+.. nonce: PofyiS
+.. section: Windows
+
+Fix name collisions due to ``#define timezone _timezone`` in PC/pyconfig.h.
+
+..
+
+.. bpo: 36405
+.. date: 2019-03-23-01-45-56
+.. nonce: m7Wv1F
+.. section: IDLE
+
+Use dict unpacking in idlelib.
+
+..
+
+.. bpo: 36396
+.. date: 2019-03-21-22-43-21
+.. nonce: xSTX-I
+.. section: IDLE
+
+Remove fgBg param of idlelib.config.GetHighlight(). This param was only used
+twice and changed the return type.
+
+..
+
+.. bpo: 36176
+.. date: 2019-03-10-00-07-46
+.. nonce: jk_vv6
+.. section: IDLE
+
+Fix IDLE autocomplete & calltip popup colors. Prevent conflicts with Linux
+dark themes (and slightly darken calltip background).
+
+..
+
+.. bpo: 23205
+.. date: 2019-03-06-14-47-57
+.. nonce: Vv0gfH
+.. section: IDLE
+
+For the grep module, add tests for findfiles, refactor findfiles to be a
+module-level function, and refactor findfiles to use os.walk.
+
+..
+
+.. bpo: 23216
+.. date: 2019-03-02-19-39-53
+.. nonce: ZA7H8H
+.. section: IDLE
+
+Add docstrings to IDLE search modules.
+
+..
+
+.. bpo: 36152
+.. date: 2019-02-28-18-52-40
+.. nonce: 9pkHIU
+.. section: IDLE
+
+Remove colorizer.ColorDelegator.close_when_done and the corresponding
+argument of .close(). In IDLE, both have always been None or False since
+2007.
+
+..
+
+.. bpo: 32129
+.. date: 2019-02-25-11-40-14
+.. nonce: 4qVCzD
+.. section: IDLE
+
+Avoid blurry IDLE application icon on macOS with Tk 8.6. Patch by Kevin
+Walzer.
+
+..
+
+.. bpo: 36096
+.. date: 2019-02-23-17-53-53
+.. nonce: mN5Ly3
+.. section: IDLE
+
+Refactor class variables to instance variables in colorizer.
+
+..
+
+.. bpo: 30348
+.. date: 2018-06-27-21-18-41
+.. nonce: WbaRJW
+.. section: IDLE
+
+Increase test coverage of idlelib.autocomplete by 30%.
+
+..
+
+.. bpo: 35132
+.. date: 2019-03-04-02-09-09
+.. nonce: 1R_pnL
+.. section: Tools/Demos
+
+Fix py-list and py-bt commands of python-gdb.py on gdb7.
+
+..
+
+.. bpo: 32217
+.. date: 2017-12-19-20-42-36
+.. nonce: axXcjA
+.. section: Tools/Demos
+
+Fix freeze script on Windows.
+
+..
+
+.. bpo: 36381
+.. date: 2019-03-20-22-02-40
+.. nonce: xlzDJ2
+.. section: C API
+
+Raise ``DeprecationWarning`` when '#' formats are used for building or
+parsing values without ``PY_SSIZE_T_CLEAN``.
+
+..
+
+.. bpo: 36142
+.. date: 2019-03-01-03-23-48
+.. nonce: 7F6wJd
+.. section: C API
+
+The whole coreconfig.h header is now excluded from Py_LIMITED_API. Move
+functions definitions into a new internal pycore_coreconfig.h header.
diff --git a/Misc/NEWS.d/next/Build/2019-02-21-14-48-31.bpo-31904.J82jY2.rst b/Misc/NEWS.d/next/Build/2019-02-21-14-48-31.bpo-31904.J82jY2.rst
deleted file mode 100644
index 1292193..0000000
--- a/Misc/NEWS.d/next/Build/2019-02-21-14-48-31.bpo-31904.J82jY2.rst
+++ /dev/null
@@ -1 +0,0 @@
-Enable build system to cross-build for VxWorks RTOS.
diff --git a/Misc/NEWS.d/next/Build/2019-02-28-18-09-01.bpo-36146.IwPJVT.rst b/Misc/NEWS.d/next/Build/2019-02-28-18-09-01.bpo-36146.IwPJVT.rst
deleted file mode 100644
index 93c1e1a..0000000
--- a/Misc/NEWS.d/next/Build/2019-02-28-18-09-01.bpo-36146.IwPJVT.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Fix setup.py on macOS: only add ``/usr/include/ffi`` to include
-directories of _ctypes, not for all extensions.
diff --git a/Misc/NEWS.d/next/Build/2019-03-01-17-49-22.bpo-36146.VeoyG7.rst b/Misc/NEWS.d/next/Build/2019-03-01-17-49-22.bpo-36146.VeoyG7.rst
deleted file mode 100644
index f32a821..0000000
--- a/Misc/NEWS.d/next/Build/2019-03-01-17-49-22.bpo-36146.VeoyG7.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Add ``TEST_EXTENSIONS`` constant to ``setup.py`` to allow to not build test
-extensions like ``_testcapi``.
diff --git a/Misc/NEWS.d/next/Build/2019-03-18-23-49-15.bpo-36356.WNrwYI.rst b/Misc/NEWS.d/next/Build/2019-03-18-23-49-15.bpo-36356.WNrwYI.rst
deleted file mode 100644
index d30f5d5..0000000
--- a/Misc/NEWS.d/next/Build/2019-03-18-23-49-15.bpo-36356.WNrwYI.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix leaks that led to build failure when configured with address sanitizer.
diff --git a/Misc/NEWS.d/next/C API/2019-03-01-03-23-48.bpo-36142.7F6wJd.rst b/Misc/NEWS.d/next/C API/2019-03-01-03-23-48.bpo-36142.7F6wJd.rst
deleted file mode 100644
index 0005270..0000000
--- a/Misc/NEWS.d/next/C API/2019-03-01-03-23-48.bpo-36142.7F6wJd.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-The whole coreconfig.h header is now excluded from Py_LIMITED_API. Move
-functions definitions into a new internal pycore_coreconfig.h header.
diff --git a/Misc/NEWS.d/next/C API/2019-03-20-22-02-40.bpo-36381.xlzDJ2.rst b/Misc/NEWS.d/next/C API/2019-03-20-22-02-40.bpo-36381.xlzDJ2.rst
deleted file mode 100644
index 66982aa..0000000
--- a/Misc/NEWS.d/next/C API/2019-03-20-22-02-40.bpo-36381.xlzDJ2.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Raise ``DeprecationWarning`` when '#' formats are used for building or
-parsing values without ``PY_SSIZE_T_CLEAN``.
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-11-00-50-03.bpo-11814.M12CMH.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-11-00-50-03.bpo-11814.M12CMH.rst
deleted file mode 100644
index b3bec72..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2019-02-11-00-50-03.bpo-11814.M12CMH.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Retire pgen and use a modified version of pgen2 to generate the parser.
-Patch by Pablo Galindo.
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-20-08-51-04.bpo-36048.I3LJt9.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-20-08-51-04.bpo-36048.I3LJt9.rst
deleted file mode 100644
index d032e84..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2019-02-20-08-51-04.bpo-36048.I3LJt9.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-The :meth:`~object.__index__` special method will be used instead of
-:meth:`~object.__int__` for implicit conversion of Python numbers to C
-integers. Using the ``__int__()`` method in implicit conversions has been
-deprecated.
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-26-17-34-49.bpo-31904.R4KSj6.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-26-17-34-49.bpo-31904.R4KSj6.rst
deleted file mode 100644
index 2951495..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2019-02-26-17-34-49.bpo-31904.R4KSj6.rst
+++ /dev/null
@@ -1 +0,0 @@
-Use UTF-8 as the system encoding on VxWorks.
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-02-27-16-49-08.bpo-35975.IescLY.rst b/Misc/NEWS.d/next/Core and Builtins/2019-02-27-16-49-08.bpo-35975.IescLY.rst
deleted file mode 100644
index 3bbfc74..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2019-02-27-16-49-08.bpo-35975.IescLY.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-Add a ``feature_version`` flag to ``ast.parse()`` (documented) and
-``compile()`` (hidden) that allows tweaking the parser to support older
-versions of the grammar. In particular, if ``feature_version`` is 5 or 6,
-the hacks for the ``async`` and ``await`` keyword from PEP 492 are
-reinstated. (For 7 or higher, these are unconditionally treated as keywords,
-but they are still special tokens rather than ``NAME`` tokens that the
-parser driver recognizes.)
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-03-01-13-48-01.bpo-36124.Blzxq1.rst b/Misc/NEWS.d/next/Core and Builtins/2019-03-01-13-48-01.bpo-36124.Blzxq1.rst
deleted file mode 100644
index ee9b0c1..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2019-03-01-13-48-01.bpo-36124.Blzxq1.rst
+++ /dev/null
@@ -1,4 +0,0 @@
-Add a new interpreter-specific dict and expose it in the C-API via
-PyInterpreterState_GetDict(). This parallels PyThreadState_GetDict().
-However, extension modules should continue using PyModule_GetState() for
-their own internal per-interpreter state.
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-03-04-18-05-31.bpo-36188.EuUZNz.rst b/Misc/NEWS.d/next/Core and Builtins/2019-03-04-18-05-31.bpo-36188.EuUZNz.rst
deleted file mode 100644