[issue44845] Allow keyword arguments in code.__new__

2021-11-19 Thread Patrick Reader
Change by Patrick Reader : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44845] Allow keyword arguments in code.__new__

2021-11-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -27890 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44845] Allow keyword arguments in code.__new__

2021-11-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +terry.reedy nosy_count: 2.0 -> 3.0 pull_requests: +27890 pull_request: https://github.com/python/cpython/pull/29651 ___ Python tracker ___

[issue44845] Allow keyword arguments in code.__new__

2021-08-11 Thread Raymond Hettinger
Raymond Hettinger added the comment: Generally, construction time is faster if the arguments are positional only. Also, this isn't a method that people typically call directly — it is only quasi-public because the layout of the codestring is implementation dependent and changes every now

[issue44845] Allow keyword arguments in code.__new__

2021-08-05 Thread Patrick Reader
New submission from Patrick Reader : Per bpo-41263, code.__new__ now uses Argument Clinic. However, it still has a / marker which prevents the use of keyword arguments