[issue45220] Windows builds sometimes fail on Azure and GitHub Action: fatal error RC1116: RC terminating after preprocessor errors

2021-11-03 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +27654 pull_request: https://github.com/python/cpython/pull/29396 ___ Python tracker ___ _

[issue45582] Rewrite getpath.c in Python

2021-11-03 Thread Steve Dower
Steve Dower added the comment: Unsurprisingly, it was a bad edit that I made to the Makefile myself. The commit that undoes it is https://github.com/python/cpython/pull/29041/commits/aedebcc45a638f5cf65d17046ae09b5cac97cebf but since I made the initial change as part of this PR, it was never

[issue45706] Add IMAP4.login_plain to imaplib

2021-11-03 Thread Prem Buczkowski
New submission from Prem Buczkowski : Hi everyone and nice to meet you! I would like to propose adding a method login_plain to Python IMAP4 standard library client. Currently, one can use login, login_cram_md5 or add their own authentication method using authenticate. While login works great

[issue45706] Add IMAP4.login_plain to imaplib

2021-11-03 Thread Prem Buczkowski
Change by Prem Buczkowski : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue43652] Upgrade Windows tcl/tk to 8.6.11

2021-11-03 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +27655 pull_request: https://github.com/python/cpython/pull/29397 ___ Python tracker ___ _

[issue45706] Add IMAP4.login_plain to imaplib

2021-11-03 Thread Prem Buczkowski
Change by Prem Buczkowski : -- pull_requests: +27656 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29398 ___ Python tracker ___ _

[issue45707] Variable reassginment triggers incorrect behaviors of locals()

2021-11-03 Thread Xinmeng Xia
New submission from Xinmeng Xia : Normally after executing a piece of code in a function, locals() should contain the local variables and these variables can be reassigned next. In the following code, "attr" should be found in locals(). Actually, it can not be found in either locals() or glob

[issue45707] Variable reassginment triggers incorrect behaviors of locals()

2021-11-03 Thread Dennis Sweeney
Dennis Sweeney added the comment: >From https://docs.python.org/3/library/functions.html#exec : "modifications to the default locals dictionary should not be attempted. Pass an explicit locals dictionary if you need to see effects of the code on locals after function exec() returns." There

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-03 Thread Ken Jin
Ken Jin added the comment: New changeset e03e50377d6f8f212af60fed4ae405ebeb73237d by Alex Waygood in branch 'main': bpo-45680: ``typing`` docs: improve links to docs on ``GenericAlias``/``__class_getitem__`` (GH-29387) https://github.com/python/cpython/commit/e03e50377d6f8f212af60fed4ae405eb

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-03 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +27658 pull_request: https://github.com/python/cpython/pull/29399 ___ Python tracker _

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-03 Thread miss-islington
Change by miss-islington : -- pull_requests: +27659 pull_request: https://github.com/python/cpython/pull/29400 ___ Python tracker ___ __

[issue45707] Variable reassginment triggers incorrect behaviors of locals()

2021-11-03 Thread Josh Rosenberg
Josh Rosenberg added the comment: This is a documented feature of locals() (it's definitionally impossible to auto-vivify *real* locals, because real locals are statically assigned to specific indices in a fixed size array at function compile time, and the locals() function is returning a co

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-03 Thread miss-islington
miss-islington added the comment: New changeset c10896696f47a8348e6d9ea3c1d96fa6ba131a31 by Miss Islington (bot) in branch '3.10': bpo-45680: ``typing`` docs: improve links to docs on ``GenericAlias``/``__class_getitem__`` (GH-29387) https://github.com/python/cpython/commit/c10896696f47a8348

[issue45680] Documentation on `GenericAlias` objects and `__class_getitem__` could be improved

2021-11-03 Thread miss-islington
miss-islington added the comment: New changeset e813dd4d7bb0ecfabc7dae75e13f58164bcf8da6 by Miss Islington (bot) in branch '3.9': bpo-45680: ``typing`` docs: improve links to docs on ``GenericAlias``/``__class_getitem__`` (GH-29387) https://github.com/python/cpython/commit/e813dd4d7bb0ecfabc

[issue45546] Unable to pickle enum with nested frozen dataclass?

2021-11-03 Thread Ethan Furman
Change by Ethan Furman : -- Removed message: https://bugs.python.org/msg405650 ___ Python tracker ___ ___ Python-bugs-list mailing l

<    1   2