[issue43921] test_ssl fails on Windows buildbots

2021-06-02 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +25097 pull_request: https://github.com/python/cpython/pull/26501 ___ Python tracker ___ __

[issue44290] x86-64 macOS 3.x buildbot build failed with: No such file or directory: '/Users/buildbot/buildarea/3.x.billenstein-macos/build/target/include/python3.11d/pyconfig.h'

2021-06-02 Thread Matt Billenstein
Matt Billenstein added the comment: Hmm, yeah, it did seem to me like the server was wedged or something... glad to see it going. M -- Matt Billenstein m...@vazor.com > On Jun 2, 2021, at 6:13 PM, STINNER Victor wrote: > >  > STINNER Victor added the comment: > >> Hmm, I just tried to

[issue44293] PEP 585 breaks inspect.isclass

2021-06-02 Thread Guido van Rossum
Guido van Rossum added the comment: Since these are new forms (list[int] previously was an error), does it actually matter? Especially since these are primarily used in annotations. @Joseph Perez, is there a specific library or pattern that is broken by this? FWIW I did think rather carefull

[issue43921] test_ssl fails on Windows buildbots

2021-06-02 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +25098 pull_request: https://github.com/python/cpython/pull/26502 ___ Python tracker ___ __

[issue43921] test_ssl fails on Windows buildbots

2021-06-02 Thread STINNER Victor
STINNER Victor added the comment: See my comparison of read() and write() errors on Linux vs Windows: https://github.com/python/cpython/pull/26501#issuecomment-853489167 I wrote PR 26502 to fix test_wrong_cert_tls13() on Windows (currently, the test is skipped). On Linux, read() always raise

[issue43921] test_ssl: test_wrong_cert_tls13() and test_pha_required_nocert() fail randomly on Windows

2021-06-02 Thread STINNER Victor
Change by STINNER Victor : -- title: test_ssl fails on Windows buildbots -> test_ssl: test_wrong_cert_tls13() and test_pha_required_nocert() fail randomly on Windows ___ Python tracker __

[issue43921] test_ssl: test_wrong_cert_tls13() and test_pha_required_nocert() fail randomly on Windows

2021-06-02 Thread STINNER Victor
STINNER Victor added the comment: In Python 3.9, test_pha_required_nocert() looks more strict, it requires read() to fail with the 'tlsv13 alert certificate required' error message: # receive alert with self.assertRaisesRegex( ssl.SSLError, 'tls

[issue44297] Frame with -1 line number

2021-06-02 Thread STINNER Victor
New submission from STINNER Victor : While debugging https://bugs.python.org/issue43921 on Windows, I got a traceback with a single frame and the frame line number is -1. It looks like a Python 3.11 regression. Mark, Guido: can it be related to recent optimization work done in the main branc

[issue44288] unittest: _is_relevant_tb_level() fails because tb.tb_frame.f_globals=None

2021-06-02 Thread STINNER Victor
STINNER Victor added the comment: Oops, I wanted to ping Mark Shannon, not Mark Dickinson. -- nosy: +Mark.Shannon -mark.dickinson ___ Python tracker ___ __

[issue44229] test_ssl: test_get_server_certificate() and test_msg_callback_deadlock_bpo43577() fail randomly on the macOS CI

2021-06-02 Thread STINNER Victor
Change by STINNER Victor : -- title: Intermittent connection errors in ssl tests on macOS CI -> test_ssl: test_get_server_certificate() and test_msg_callback_deadlock_bpo43577() fail randomly on the macOS CI ___ Python tracker

[issue39573] [C API] Make PyObject an opaque structure in the limited C API

2021-06-02 Thread Dong-hee Na
Dong-hee Na added the comment: > So I propose again to convert Py_TYPE and Py_SIZE macros to static inline > functions +1 -- ___ Python tracker ___ _

[issue44290] x86-64 macOS 3.x buildbot build failed with: No such file or directory: '/Users/buildbot/buildarea/3.x.billenstein-macos/build/target/include/python3.11d/pyconfig.h'

2021-06-02 Thread STINNER Victor
STINNER Victor added the comment: The 2 latest builds are green (success), so I close the issue. https://buildbot.python.org/all/#/builders/366 Thanks for the help! -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Pytho

[issue44282] IDLE: ColorDelegatorTest test_incremental_editing failures

2021-06-02 Thread STINNER Victor
STINNER Victor added the comment: The 12 latest build on https://buildbot.python.org/all/#/builders/464 are green (success). Can this issue be closed now? We can reopen it later if the issue strikes back. -- ___ Python tracker

[issue37224] [subinterpreters] test__xxsubinterpreters fails randomly

2021-06-02 Thread STINNER Victor
STINNER Victor added the comment: Recent test_still_running() failure on AMD64 Windows8.1 Refleaks 3.10: https://buildbot.python.org/all/#/builders/638/builds/19 1:22:17 load avg: 3.00 [393/427/2] test__xxsubinterpreters failed -- running: test_pydoc (9 min 7 sec), test_venv (2 min 54 sec), t

[issue44283] Add jump table for certain safe match-case statements

2021-06-02 Thread Brandt Bucher
Brandt Bucher added the comment: For anyone curious, I had some free time today and took a stab at creating a minimal _frozendict type (sharing as much implementation with dict as possible) to see how difficult it would be. It was actually much simpler than I thought... just a few dozen line

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +25099 pull_request: https://github.com/python/cpython/pull/26503 ___ Python tracker ___

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread Gregory P. Smith
Gregory P. Smith added the comment: Great catch! The new PR should address that. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue44282] IDLE: ColorDelegatorTest test_incremental_editing failures

2021-06-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue44283] Add jump table for certain safe match-case statements

2021-06-02 Thread Dennis Sweeney
Dennis Sweeney added the comment: Very interesting -- that is shorter than I thought also! If we really wanted to optimize the tar out of this, we could probably find a way to re-use just the PyDictKeysObject to find the index into a C-array of integer jump targets and not have to worry abou

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +25101 pull_request: https://github.com/python/cpython/pull/26505 ___ Python tracker ___ __

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +25100 pull_request: https://github.com/python/cpython/pull/26504 ___ Python tracker ___ __

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +25102 pull_request: https://github.com/python/cpython/pull/26506 ___ Python tracker ___ __

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +25103 pull_request: https://github.com/python/cpython/pull/26507 ___ Python tracker ___ __

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset e60ab843cbb016fb6ff8b4f418641ac05a9b2fcc by Gregory P. Smith in branch 'main': bpo-44022: Improve the regression test. (GH-26503) https://github.com/python/cpython/commit/e60ab843cbb016fb6ff8b4f418641ac05a9b2fcc -- _

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +25104 pull_request: https://github.com/python/cpython/pull/26508 ___ Python tracker ___ __

[issue42914] pprint numbers with underscore

2021-06-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +25105 pull_request: https://github.com/python/cpython/pull/26509 ___ Python tracker ___ __

[issue42914] pprint numbers with underscore

2021-06-02 Thread miss-islington
miss-islington added the comment: New changeset 4846ea95d1a121df5e8081e2a290f63d1419cad8 by Wm. Keith van der Meulen in branch 'main': Add bpo-42914 to What's New (GH-25124) https://github.com/python/cpython/commit/4846ea95d1a121df5e8081e2a290f63d1419cad8 -- nosy: +miss-islington _

[issue43776] Popen with shell=True yield mangled repr output

2021-06-02 Thread Gregory P. Smith
Change by Gregory P. Smith : -- pull_requests: +25106 pull_request: https://github.com/python/cpython/pull/26510 ___ Python tracker ___

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread miss-islington
miss-islington added the comment: New changeset 98e5a7975d99b58d511f171816ecdfb13d5cca18 by Miss Islington (bot) in branch '3.10': bpo-44022: Improve the regression test. (GH-26503) https://github.com/python/cpython/commit/98e5a7975d99b58d511f171816ecdfb13d5cca18 -- ___

[issue42914] pprint numbers with underscore

2021-06-02 Thread miss-islington
miss-islington added the comment: New changeset 41317801a95c758c3fc04c4fb332ac453c9e3ad3 by Miss Islington (bot) in branch '3.10': Add bpo-42914 to What's New (GH-25124) https://github.com/python/cpython/commit/41317801a95c758c3fc04c4fb332ac453c9e3ad3 -- ___

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread miss-islington
miss-islington added the comment: New changeset 5df4abd6b033a5f1e48945c6988b45e35e76f647 by Miss Islington (bot) in branch '3.9': bpo-44022: Improve the regression test. (GH-26503) https://github.com/python/cpython/commit/5df4abd6b033a5f1e48945c6988b45e35e76f647 --

[issue43776] Popen with shell=True yield mangled repr output

2021-06-02 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 5a8ddcc4524dca3880d7fc2818814ffae1cfb8a2 by Gregory P. Smith in branch '3.9': [3.9] bpo-43776: Remove list call from args in Popen repr (GH-25338) (GH-26510) https://github.com/python/cpython/commit/5a8ddcc4524dca3880d7fc2818814ffae1cfb8a2 -

[issue43776] Popen with shell=True yield mangled repr output

2021-06-02 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> commit review status: open -> closed ___ Python tracker ___ ___

[issue44290] x86-64 macOS 3.x buildbot build failed with: No such file or directory: '/Users/buildbot/buildarea/3.x.billenstein-macos/build/target/include/python3.11d/pyconfig.h'

2021-06-02 Thread Ned Deily
Ned Deily added the comment: Alas, it looks like build 325 failed in the same way as build 322: https://buildbot.python.org/all/#/builders/366/builds/325 I wonder if there might be a Makefile race condition. -- resolution: out of date -> stage: resolved -> status: closed -> open _

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread Ned Deily
Ned Deily added the comment: New changeset fee96422e6f0056561cf74fef2012cc066c9db86 by Miss Islington (bot) in branch '3.7': bpo-44022: Improve the regression test. (GH-26503) (GH-26507) https://github.com/python/cpython/commit/fee96422e6f0056561cf74fef2012cc066c9db86 -- __

[issue44022] urllib http client possible infinite loop on a 100 Continue response

2021-06-02 Thread Ned Deily
Ned Deily added the comment: New changeset 1b6f4e5e13ebd1f957b47f7415b53d0869bdbac6 by Miss Islington (bot) in branch '3.6': bpo-44022: Improve the regression test. (GH-26503) (GH-26508) https://github.com/python/cpython/commit/1b6f4e5e13ebd1f957b47f7415b53d0869bdbac6 -- __

[issue44290] x86-64 macOS 3.x buildbot build failed with: No such file or directory: '/Users/buildbot/buildarea/3.x.billenstein-macos/build/target/include/python3.11d/pyconfig.h'

2021-06-02 Thread Matt Billenstein
Matt Billenstein added the comment: So, I'd been trying various things before the master restart and I was using python3 supplied by homebrew - I decided I didn't like that dependency and switched it back to /usr/bin/python3 as supplied by the system [1]. I did a rebuild on 325 a couple more t

[issue44283] Add jump table for certain safe match-case statements

2021-06-02 Thread Kshitiz Arya
Change by Kshitiz Arya : -- nosy: +Kshitiz17 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

<    1   2