[issue45000] del __debug__ should be a SyntaxError

2021-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 32c1caa87f68a650f2d009a589a1db30484499cb by Dong-hee Na in branch '3.10': bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947) (GH-27957) https://github.com/python/cpython/commit/32c1caa87f68a650f2d009a589a1db30484499cb

[issue45000] del __debug__ should be a SyntaxError

2021-08-26 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45000] del __debug__ should be a SyntaxError

2021-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 6ea6cf22e9d084c27a4fffbbd298098a6ad5b776 by Dong-hee Na in branch '3.10': [3.10] bpo-45000: Update whatsnews about deleting __debug__ (GH-27956) (GH-27958)

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26404 pull_request: https://github.com/python/cpython/pull/27958 ___ Python tracker ___

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset c764dfbcbc12c4653fc8ab39773cf973c9db2757 by Dong-hee Na in branch 'main': bpo-45000: Update whatsnews about deleting __debug__ (GH-27956) https://github.com/python/cpython/commit/c764dfbcbc12c4653fc8ab39773cf973c9db2757 --

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26403 pull_request: https://github.com/python/cpython/pull/27957 ___ Python tracker ___

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +26402 pull_request: https://github.com/python/cpython/pull/27956 ___ Python tracker ___

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: +Python 3.11 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread miss-islington
miss-islington added the comment: New changeset 551da597a0996b0fb3af425f48aa5bc63ea6b963 by Dong-hee Na in branch 'main': bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947) https://github.com/python/cpython/commit/551da597a0996b0fb3af425f48aa5bc63ea6b963 -- nosy:

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +26394 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27947 ___ Python tracker ___

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45000] del __debug__ should be a SyntaxError

2021-08-25 Thread Andre Roberge
New submission from Andre Roberge : Consider the following: Python 3.10.0rc1 ... >>> __debug__ True >>> del __debug__ Traceback (most recent call last): File "", line 1, in NameError: name '__debug__' is not defined >>> __debug__ True >>> __debug__ = False File "", line 1 SyntaxError: