[issue45569] Drop support for 15-bit PyLong digits?

2021-10-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: How about: create a fake test file test/test_xintperf with test case and test method(s) that run timeit with a suite of int operations and print report. Create 'draft' PRs for main and 3.10 (and 3.9?). Run just this test on buildbots. (I believe I have se

[issue45585] Gzipping subprocess output produces invalid .gz file

2021-10-22 Thread Michael Herrmann
New submission from Michael Herrmann : Consider the following: import gzip import subprocess with gzip.open('test.gz', 'wb') as f: subprocess.run(['echo', 'hi'], stdout=f) with gzip.open('test.gz', 'rb') as f: print(f.read()) I'd expect "hi" to appear in my console. Instead, I'm gett

[issue40885] Cannot pipe GzipFile into subprocess

2021-10-22 Thread Michael Herrmann
Michael Herrmann added the comment: I just encountered what seems to be the inverse problem of this issue: #45585 -- nosy: +mherrmann.at ___ Python tracker ___ ___

[issue45391] 3.10 objects.inv classifies UnionType as data

2021-10-22 Thread Dominic Davis-Foster
Change by Dominic Davis-Foster : -- nosy: +dom1310df ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

<    1   2   3