[issue37553] SendfileUsingSendTest tests timeout too short for Windows ARM32

2020-10-16 Thread Paul Monson
Paul Monson added the comment: Yes. On Fri, Oct 16, 2020 at 3:41 PM Irit Katriel wrote: > > Irit Katriel added the comment: > > Can this be closed? > > -- > nosy: +iritkatriel > > ___ > Python tracker > >

[issue37931] crash reimporting posix after Py_Finalize on mac

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38820] Make Python compatible with OpenSSL 3.0.0

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue33592] Document contextvars C API

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-16 Thread Tim Peters
Tim Peters added the comment: BTW, in the old post of Fredrick's I linked to, he referred to a "stringbench.py" program he used for timings, but the link is dead. I was surprised to find that it still lives on, under the Tools directory. Or did - I'm on Windows now and its Python distro does

[issue31202] Windows pathlib.Path.glob(pattern) fixed part of the pattern changed to lowercase whereas it should be unchanged.

2020-10-16 Thread Brice Gros
Brice Gros added the comment: I think so, the original PR has been ported to 3.9, 3.8, 3.7, and all the PRs were merged. -- ___ Python tracker ___ ___

[issue31202] Windows pathlib.Path.glob(pattern) fixed part of the pattern changed to lowercase whereas it should be unchanged.

2020-10-16 Thread Steve Dower
Steve Dower added the comment: Yeah, looks done. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41854] argparse.add_mutually_exclusive_group fails for optional positional arguments

2020-10-16 Thread paul j3
paul j3 added the comment: Give the positional a non-none default: e.g. group.add_argument('args', metavar='ARGUMENT', nargs='*', default=[], help='arguments to PROGRAM') Since a '*' or '?' positional works with an empty list of arguments, it is "always seen". It r

[issue38094] unneeded assignment to wb.len in PyBytes_Concat using buffer protocol

2020-10-16 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue38820] Make Python compatible with OpenSSL 3.0.0

2020-10-16 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue38250] enum.Flag should be more set-like

2020-10-16 Thread John Belmonte
Change by John Belmonte : -- nosy: +jbelmonte nosy_count: 4.0 -> 5.0 pull_requests: +21698 pull_request: https://github.com/python/cpython/pull/22734 ___ Python tracker ___ ___

[issue37440] httplib should enable post-handshake authentication for TLS 1.3

2020-10-16 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37428] SSLContext.post_handshake_auth implicitly enables cert validation

2020-10-16 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42057] pytest case which catch exceptions become segfault

2020-10-16 Thread Hiroshi Miura
New submission from Hiroshi Miura : I've observed that pytest becomes segmentation fault on python 3.9.0 with attached case. I've tested the case with several python versions; python 3.9.0a2 - good python 3.9.0a3, 3.9.0-final - bad python 3.10.0a1 - good - OS: Mint Linux 20, Linux kerne

[issue42057] pytest case which catch exceptions become segfault

2020-10-16 Thread Hiroshi Miura
Change by Hiroshi Miura : Added file: https://bugs.python.org/file49522/py_stacktrace.txt ___ Python tracker ___ ___ Python-bugs-list mailin

[issue42057] pytest case which catch exceptions become segfault

2020-10-16 Thread Hiroshi Miura
Change by Hiroshi Miura : Added file: https://bugs.python.org/file49523/gdb_backtrace.txt ___ Python tracker ___ ___ Python-bugs-list mailin

[issue42058] Process not running with args

2020-10-16 Thread Vaibhav Banait
New submission from Vaibhav Banait : I am getting this error on windows 10 python 3.8 Emacs 27 and prelude configuration Company: backend company-ngram-backend error "Process company-ngram not running" with args (prefix) I am using this code in .emacs (with-eval-after-load 'company-ngra

[issue42057] pytest case which catch exceptions become segfault

2020-10-16 Thread Hiroshi Miura
Hiroshi Miura added the comment: Here is a result of running pytest on python 3.9.0 with gdb. test session starts platform linux -- Python 3.9.0, pytest-4.6.9, py-1.8.1, pluggy-0.13.0 roo

[issue42057] pytest case which catch exceptions become segfault

2020-10-16 Thread Hiroshi Miura
Hiroshi Miura added the comment: FYI: A following commit fixes the issue in 3.10 development branch. 6e8128f02e ("bpo-41323: Perform 'peephole' optimizations directly on the CFG. (GH-21517)", 2020-07-30) -- nosy: +Mark.Shannon ___ Python tracker

[issue37555] _CallList.__contains__ doesn't always respect ANY.

2020-10-16 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I would prefer not backporting this change given the discussion in https://github.com/python/cpython/pull/14700#issuecomment-531791029 -- ___ Python tracker _

[issue42058] Process not running with args

2020-10-16 Thread Vaibhav Banait
Change by Vaibhav Banait : -- type: compile error -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38252] Use 8-byte step to detect ASCII sequence in 64bit Windows builds

2020-10-16 Thread Ma Lin
Ma Lin added the comment: Although the improvement is not great, it's a very hot code path. Could you review the PR? -- components: +Windows nosy: +paul.moore, tim.golden ___ Python tracker

[issue42057] pytest case which catch exceptions become segfault

2020-10-16 Thread Hiroshi Miura
Hiroshi Miura added the comment: A test code does not always reproduce the issue. Please try it in several times. It seems to be happened when multiple threads try execute a same function which produces an exception, and both callers try to catch the exception at the same time. --

[issue36179] _hashopenssl has reference leaks in OOM case

2020-10-16 Thread Gregory P. Smith
Change by Gregory P. Smith : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

<    1   2