[issue44564] DeprecationWarning in test_enum over formatting

2021-07-29 Thread Denis Laxalde
Denis Laxalde added the comment: The assertion at stake looks redundant since we already check that `'{}'.format(OkayEnum.one) == '1'` (the line above) and that `OkayEnum.one == '1'` (3 lines above). -- nosy: +dlax ___ Python tracker

[issue44769] socketserver.shutdown should stop serve_forever() immediately

2021-07-29 Thread Petr Viktorin
Petr Viktorin added the comment: This isn't a high priority for me, but I have a WIP branch in https://github.com/encukou/cpython/tree/http-server-poll Feel free to continue it if you get to it sooner than I do. -- ___ Python tracker

[issue44609] Buffer support in the stable ABI

2021-07-29 Thread Inada Naoki
Change by Inada Naoki : -- nosy: +methane ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue41103] Removing old buffer support

2021-07-29 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +25967 pull_request: https://github.com/python/cpython/pull/27437 ___ Python tracker ___ _

[issue44741] Pattern Matching - star subpattern with a subject derived from collections.abc.Sequence

2021-07-29 Thread Pierre Quentel
Pierre Quentel added the comment: I found why len() is required, it's to avoid trying to match the subject (thus consuming a part of it) if its length is less than the number of non-star patterns, as explained in the PEP. My mistake, sorry. -- __

<    1   2