-
-
Notifications
You must be signed in to change notification settings - Fork 34.6k
gh-142461: Move misplaced NEWS entries to an appropriate section #143411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
ee9bb16
f19e5e6
5b061c6
64a270c
ce5603d
75282c2
3402d1c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -212,7 +212,7 @@ Micro optimization for range.index if step is 1. Patch by Donghee Na. | |
| .. bpo: 41435 | ||
| .. date: 2020-08-07-13-42-48 | ||
| .. nonce: qPWjJA | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Add ``sys._current_exceptions()`` function to retrieve a dictionary mapping | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This comment was marked as spam.
Sorry, something went wrong. |
||
| each thread's identifier to the topmost exception currently active in that | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,7 +89,7 @@ non-buffer object. | |
| .. bpo: 1635741 | ||
| .. date: 2020-11-18-23-46-31 | ||
| .. nonce: GVOQ-m | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Port the ``_warnings`` extension module to the multi-phase initialization | ||
|
Comment on lines
+92
to
94
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this change is in
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's in
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is on border. I have no strong opinion. There is a stable C API for warnings, but it can be used without importing the module, and I think this change did not affect the users of this C API. So, I think it is fine to keep Library. |
||
| API (:pep:`489`). Patch by Victor Stinner. | ||
|
|
@@ -204,7 +204,7 @@ Pablo Galindo. | |
| .. bpo: 40077 | ||
| .. date: 2020-11-03-21-58-27 | ||
| .. nonce: a9qM1j | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Convert :mod:`queue` to use heap types. | ||
|
|
||
|
|
@@ -223,7 +223,7 @@ objects. See PEP 626 for details. | |
| .. bpo: 40077 | ||
| .. date: 2020-11-02-14-39-48 | ||
| .. nonce: grY9TG | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Convert :mod:`mmap` to use heap types. | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -102,7 +102,7 @@ blocks | |
| .. bpo: 42639 | ||
| .. date: 2020-12-09-01-55-10 | ||
| .. nonce: 5pI5HG | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Make the :mod:`atexit` module state per-interpreter. It is now safe have | ||
| more than one :mod:`atexit` module instance. Patch by Donghee Na and Victor | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As per PR description (
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a distinction between a built-in module and a built-in. I'd leave it in "Library" here. (A builtin module is a module that is always in the interpreter and contributes to its overall filesize; it's also statically linked). What matters here is what happens for the user (that is, they can now use
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is no stable public C API for |
||
|
|
@@ -124,7 +124,7 @@ the filename. | |
| .. bpo: 42195 | ||
| .. date: 2020-11-20-00-57-47 | ||
| .. nonce: HeqcpS | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| The ``__args__`` of the parameterized generics for :data:`typing.Callable` | ||
| and :class:`collections.abc.Callable` are now consistent. The ``__args__`` | ||
|
|
@@ -143,7 +143,7 @@ Ken Jin. | |
| .. bpo: 40137 | ||
| .. date: 2020-11-19-23-12-57 | ||
| .. nonce: bihl9O | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Convert functools module to use :c:func:`PyType_FromModuleAndSpec`. | ||
|
|
||
|
|
@@ -152,7 +152,7 @@ Convert functools module to use :c:func:`PyType_FromModuleAndSpec`. | |
| .. bpo: 40077 | ||
| .. date: 2020-11-03-13-46-10 | ||
| .. nonce: NfAIdj | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Convert :mod:`array` to use heap types, and establish module state for | ||
| these. | ||
|
|
@@ -162,7 +162,7 @@ these. | |
| .. bpo: 42008 | ||
| .. date: 2020-10-12-14-51-59 | ||
| .. nonce: ijWw2I | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Fix _random.Random() seeding. | ||
|
|
||
|
|
@@ -171,7 +171,7 @@ Fix _random.Random() seeding. | |
| .. bpo: 1635741 | ||
| .. date: 2020-09-12-19-21-52 | ||
| .. nonce: F2kDrU | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Port the :mod:`pyexpat` extension module to multi-phase initialization | ||
| (:pep:`489`). | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -95,7 +95,7 @@ by Pablo Galindo. | |
| .. bpo: 42924 | ||
| .. date: 2021-01-13-14-06-01 | ||
| .. nonce: _WS1Ok | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
|
||
| Fix ``bytearray`` repetition incorrectly copying data from the start of the | ||
| buffer, even if the data is offset within the buffer (e.g. after reassigning | ||
|
|
@@ -136,7 +136,7 @@ frame.f_lineno is correct even if frame.f_trace is set to True | |
| .. bpo: 37324 | ||
| .. date: 2020-12-12-20-09-12 | ||
| .. nonce: jB-9_U | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Remove deprecated aliases to :ref:`collections-abstract-base-classes` from | ||
| the :mod:`collections` module. | ||
|
|
@@ -146,7 +146,7 @@ the :mod:`collections` module. | |
| .. bpo: 41994 | ||
| .. date: 2020-10-10-14-16-03 | ||
| .. nonce: Xop8sV | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is still a core & builtins. |
||
|
|
||
| Fixed possible leak in ``import`` when ``sys.modules`` is not a ``dict``. | ||
|
|
||
|
|
@@ -155,7 +155,7 @@ Fixed possible leak in ``import`` when ``sys.modules`` is not a ``dict``. | |
| .. bpo: 27772 | ||
| .. date: 2018-12-20-23-59-23 | ||
| .. nonce: idHEcj | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is affecting string formattin... so built-in. |
||
|
|
||
| In string formatting, preceding the *width* field by ``'0'`` no longer | ||
| affects the default alignment for strings. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,7 @@ Update CPython bytecode magic number. | |
| .. bpo: 43672 | ||
| .. date: 2021-03-31-09-12-54 | ||
| .. nonce: jTT5uG | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Raise ImportWarning when calling find_loader(). | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this change affecting more only
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change only affects
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm thinking this one is
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for pointing this out. |
||
|
|
||
|
|
@@ -81,7 +81,7 @@ instruction dispatch a bit. | |
| .. bpo: 40645 | ||
| .. date: 2021-03-29-11-55-06 | ||
| .. nonce: PhaT-B | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Fix reference leak in the :mod:`!_hashopenssl` extension. Patch by Pablo | ||
| Galindo. | ||
|
|
@@ -91,7 +91,7 @@ Galindo. | |
| .. bpo: 42134 | ||
| .. date: 2021-03-26-17-30-19 | ||
| .. nonce: G4Sjxg | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| Calls to find_module() by the import system now raise ImportWarning. | ||
|
|
||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the changes are in
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. |
||
|
|
@@ -120,7 +120,7 @@ convention. Patch by Donghee Na. | |
| .. bpo: 42137 | ||
| .. date: 2021-03-20-19-54-47 | ||
| .. nonce: A8aQvj | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
|
||
| The import system now prefers using ``__spec__`` for ``ModuleType.__repr__`` | ||
|
serhiy-storchaka marked this conversation as resolved.
|
||
| over ``module_repr()``. | ||
|
|
@@ -150,7 +150,7 @@ continuation characters. Patch by Pablo Galindo. | |
| .. bpo: 43517 | ||
| .. date: 2021-03-16-17-12-54 | ||
| .. nonce: zAo6Ws | ||
| .. section: Core and Builtins | ||
| .. section: Library | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again. |
||
|
|
||
| Fix misdetection of circular imports when using ``from pkg.mod import | ||
| attr``, which caused false positives in non-trivial multi-threaded code. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would leave this as Core and Builtins. It is about the behavior of the core interpreter.