[issue40720] accessing mmap of file that is overwritten causes bus error

2021-03-09 Thread Thomas Grainger
Thomas Grainger added the comment: I can confirm this happens on py3.5-3.10 ``` import mmap import pathlib import tempfile def main(): with tempfile.TemporaryDirectory() as tmp: tmp_path = pathlib.Path(tmp) path = tmp_path / "eg" path.write_bytes(b"Hello,

[issue27820] Possible bug in smtplib when initial_response_ok=False

2021-03-09 Thread Senthil Kumaran
Senthil Kumaran added the comment: Hello Pandu, Thank you for this patch and the explanation. Does client blocking on repeated challenge from the server (using of while loop) look okay here? The conversation here indicates to me that it is fine. Is there any recommendation or

[issue43443] Should shelve support dict union?

2021-03-09 Thread Dominik Vilsmeier
New submission from Dominik Vilsmeier : The docs of shelve mention that > Shelf objects support all methods supported by dictionaries. This eases the > transition from dictionary based scripts to those requiring persistent > storage. However the `|=` operator is not implemented, preventing

[issue33125] Windows 10 ARM64 platform support

2021-03-09 Thread Rubin Simons
Rubin Simons added the comment: Requesting that this issue be re-opened or re-evaluated; it would be pretty great if Python could provide Windows on ARM binaries for download. There's been a lot of traction on ARM in general and having Windows on ARM downloads available by default will also

<    1   2