[python-committers] Re: Commits are no longer noted in bro issues

2021-05-28 Thread Kyle Stanley
Not a solution, but I just wanted to point out the hilarity of the "bro issues" instead of "bpo issues" typo. I've been having a difficult evening and seeing the title in my inbox made me chuckle. Might as well stop and love life's happy little accidents when one has the chance to. :) On Wed, May

[python-committers] Re: IMPORTANT: Python 3.10b2 release blockers

2021-05-28 Thread Petr Viktorin
On 28. 05. 21 6:55, Tim Peters wrote: [Pablo] Tim, check this out: import re, gc x = re.compile("x") gc.get_referents(x.__class__)[-1] Cool! So presumably this constructs a cycle involving a pattern object: import re p = re.compile("ab*c") import _sre _sre.WOWZA = p Indeed, under the cur

[python-committers] Re: IMPORTANT: Python 3.10b2 release blockers

2021-05-28 Thread Victor Stinner
On Fri, May 28, 2021 at 6:55 AM Tim Peters wrote: > I suppose I could ask why heap types were fiddled to point to their > module objects too - but that's really got nothing to do with getting > the release done, so I won't :-) PyHeapTypeObject.ht_module was added by the PEP 573 "Module State Acce