[Python-checkins] bpo-45000: Update whatsnews about deleting __debug__ (GH-27956)

corona10 webhook-mailer at python.org
Wed Aug 25 20:36:32 EDT 2021


https://github.com/python/cpython/commit/c764dfbcbc12c4653fc8ab39773cf973c9db2757
commit: c764dfbcbc12c4653fc8ab39773cf973c9db2757
branch: main
author: Dong-hee Na <donghee.na at python.org>
committer: corona10 <donghee.na92 at gmail.com>
date: 2021-08-26T09:36:16+09:00
summary:

bpo-45000: Update whatsnews about deleting __debug__ (GH-27956)

files:
M Doc/whatsnew/3.10.rst
M Doc/whatsnew/3.11.rst

diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index 6040daaf8f846..70c5140ce13b5 100644
--- a/Doc/whatsnew/3.10.rst
+++ b/Doc/whatsnew/3.10.rst
@@ -883,6 +883,8 @@ Other Language Changes
   collisions when creating dictionaries and sets containing multiple NaNs.
   (Contributed by Raymond Hettinger in :issue:`43475`.)
 
+*  A :exc:`SyntaxError` (instead of a :exc:`NameError`) will be raised when deleting the :const:`__debug__` constant. (Contributed by Dong-hee Na in :issue:`45000`.)
+
 New Modules
 ===========
 
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 296b1b279d09b..306385c2a90aa 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -176,8 +176,6 @@ Other CPython Implementation Changes
   support :class:`typing.SupportsComplex` and :class:`typing.SupportsBytes` protocols.
   (Contributed by Mark Dickinson and Dong-hee Na in :issue:`24234`.)
 
-*  A :exc:`SyntaxError` (instead of a :exc:`NameError`) will be raised when deleting the :const:`__debug__` constant. (Contributed by Dong-hee Na in :issue:`45000`.)
-
 
 New Modules
 ===========



More information about the Python-checkins mailing list