[issue41331] Sphinx can't find asdl.py when not started from the Doc/ directory

2020-07-20 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue10879] cgi memory usage

2020-07-20 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41300] IDLE: add missing import io in iomenu.py

2020-07-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41300] IDLE: add missing import io in iomenu.py

2020-07-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: The fix is in both 3.8.5 and 3.9.0b5, both released today. "print('eyes ∢∢ snake ')", for instance, in the editor, can be saved and run. (Note that astral chars like the snake disrupt editing a bit, but once there, can be saved and will print. Łukasz,

[issue40932] subprocess docs should warn of shlex use on Windows

2020-07-20 Thread Ammar Askar
Ammar Askar added the comment: Hmm, it'd be hard to enumerate them all. The module does say, "...simple syntaxes resembling that of the Unix shell" but that's it. Distinguishing at the OS level for shlex does seem a bit weird given the existence of WSL and non-compliant shells on Linux like

[issue40979] typing module docs: keep text, add subsections

2020-07-20 Thread Raymond Hettinger
Raymond Hettinger added the comment: This organization makes good sense to me. Hopefully, we can get Guido and Ivan to take a look at it. -- nosy: +gvanrossum, levkivskyi ___ Python tracker

[issue18875] Idle: Auto insertion of the closing parens, brackets, and braces

2020-07-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: I found this in Notepad++ under Settings -> Preferences -> Auto-completion -> Auto-insert with separate checkboxes for (, {, [, ', ", html/xml tags, and up to 3 custom pairs. Way too elaborate for IDLE. The only question to me is whether to have just one

[issue41100] Build failure on macOS 11 (beta)

2020-07-20 Thread Lawrence D'Anna
Change by Lawrence D'Anna : -- pull_requests: +20720 pull_request: https://github.com/python/cpython/pull/21576 ___ Python tracker ___

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41353] Indicate supported sound header formats

2020-07-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +20719 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21575 ___ Python tracker

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
Dong-hee Na added the comment: > I would rather not do this. I would not like to say this change should be applied ;) I found this point during I converting deque methods by using Argument Clinic(I will ping you later ;) https://bugs.python.org/issue39425 was applied since

[issue41353] Indicate supported sound header formats

2020-07-20 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : The documentation for the sndhdr module does not have supported file formats. Something like below could help: +++ | Value | Sound header format|

[issue41353] Indicate supported sound header formats

2020-07-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- assignee: -> docs@python components: +Documentation nosy: +docs@python type: -> enhancement ___ Python tracker ___

[issue40979] typing module docs: keep text, add subsections

2020-07-20 Thread Luciano Ramalho
Luciano Ramalho added the comment: Reviewers, besides adding section titles and reordering the entries, I made only these changes to the text: - entry for IO, TextIO, BinaryIO: added sentence "These types are in the ``typing.io`` namespace." - entry for Pattern, Match: added sentence

[issue41351] IDLE does not close the brackets and does not insert the closing quotes

2020-07-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: Please don't state opinions as facts. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Idle: Auto insertion of the closing parens, brackets, and braces versions: -Python 3.5, Python 3.6, Python 3.7, Python 3.8,

[issue30044] shutil.copystat should (allow to) copy ownership, and other attributes

2020-07-20 Thread Eryk Sun
Eryk Sun added the comment: > Since the need to copy file ownership is common, I think there could > be space for a new copy3() function which copies ownership + extended > attributes (where possible). FYI, Windows and POSIX have significantly different concepts about file (object)

[issue40979] typing module docs: keep text, add subsections

2020-07-20 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 3.0 -> 4.0 pull_requests: +20717 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21574 ___ Python tracker

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +20716 pull_request: https://github.com/python/cpython/pull/21573 ___ Python tracker ___

[issue9694] argparse required arguments displayed under "optional arguments"

2020-07-20 Thread Raymond Hettinger
Raymond Hettinger added the comment: I'll put together a patch this week to address the terminology problem. -- assignee: docs@python -> rhettinger priority: normal -> low versions: +Python 3.10, Python 3.9 -Python 3.6 ___ Python tracker

[issue41349] idle not going full screen when I rotate screen 90° on mac

2020-07-20 Thread Terry J. Reedy
Terry J. Reedy added the comment: On Windows, right clicking on the desktop produces a context menu with Display Settings. The dialog has an Orientation pulldown menu with the 4 choices. Without actually rotating my screen, I clicked Portrait and managed to start IDLE and click the

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-20 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 5241e189e77972d3a07acbbb3f0c0cbc2aeeb681 by Ammar Askar in branch 'master': bpo-41283: Fix mismatched argument name for imghdr.what (GH-21501) https://github.com/python/cpython/commit/5241e189e77972d3a07acbbb3f0c0cbc2aeeb681 --

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset d6ba8c8e16b844e2c21bfe96217dd62dc50e9014 by Miss Islington (bot) in branch '3.9': bpo-40741: Update Windows build to include SQLite 3.32.3 (GH-21570) https://github.com/python/cpython/commit/d6ba8c8e16b844e2c21bfe96217dd62dc50e9014 --

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset f599f9ea3cdcf280cdf3a72272148895d8fcb3a4 by Miss Islington (bot) in branch '3.8': bpo-40741: Update Windows build to include SQLite 3.32.3 (GH-21570) https://github.com/python/cpython/commit/f599f9ea3cdcf280cdf3a72272148895d8fcb3a4 --

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Raymond Hettinger
Raymond Hettinger added the comment: I would rather not do this. It optimizes for the uncommon case where all the objects are identical. The common case is slightly worse off because the identity test is performed twice, once before the call to Py_RichCompareBool() and again inside it.

[issue40979] typing module docs: keep text, add subsections

2020-07-20 Thread ramalho
ramalho added the comment: This is my proposal for sections to replace the existing "Classes, functions, and decorators" section. The names are sorted within each section. # Special typing primitives Any Callable ClassVar ForwardRef Generic

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread Steve Dower
Steve Dower added the comment: Closing this one now. Let's use a new issue next time there's a need to update SQLite. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue41345] Remote end closed connection without response

2020-07-20 Thread Ilia Androshchuk
Ilia Androshchuk added the comment: Hi, Michal It took a lot of time, but I achieved exactly the same behavior. My Traceback : DEBUG:urllib3.connectionpool:Resetting dropped connection: localhost DEBUG:urllib3.connectionpool:http://localhost:80 "POST / HTTP/1.1" 200 3138 Traceback (most

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +20715 pull_request: https://github.com/python/cpython/pull/21572 ___ Python tracker ___

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +20714 pull_request: https://github.com/python/cpython/pull/21571 ___ Python tracker ___

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread Steve Dower
Steve Dower added the comment: New changeset 84761c3cc4bac31d471e371c53a338686d4b0241 by Steve Dower in branch 'master': bpo-40741: Update Windows build to include SQLite 3.32.3 (GH-21570) https://github.com/python/cpython/commit/84761c3cc4bac31d471e371c53a338686d4b0241 --

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +20713 pull_request: https://github.com/python/cpython/pull/21570 ___ Python tracker ___

[issue40741] Upgrade to SQLite v3.32 in Windows and macOS builds

2020-07-20 Thread Steve Dower
Steve Dower added the comment: > Python-3.8.4rc1 and Python-3.9.0b4 are still with SQLite-3.31.1. Someone still had to send a PR to update the main build. It's not automatic, otherwise you wouldn't be able to reproduce older builds. I'll do it now. It'll be in 3.8.6 and 3.9.0b6. --

[issue40932] subprocess docs should warn of shlex use on Windows

2020-07-20 Thread Steve Dower
Steve Dower added the comment: I wonder whether we should be more specific about the shells that shlex works for? Since WSL makes *sh (Bash, Dash, Sh, etc.) easily available on Windows, and I believe PowerShell on Linux keeps its own quoting rules. --

[issue41327] Windows Store "stub" Python executables give confusing behaviour

2020-07-20 Thread Steve Dower
Steve Dower added the comment: It's already gone through the correct channels, so any other submissions will be duped by the triagers. The best person to post at is me, but I've suffered enough for it :) I'm pushing. -- ___ Python tracker

[issue38156] input fucntion raises SystemError after specific input.

2020-07-20 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch nosy: +benjamin.peterson nosy_count: 1.0 -> 2.0 pull_requests: +20712 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21569 ___ Python tracker

[issue29778] [CVE-2020-15523] _Py_CheckPython3 uses uninitialized dllpath when embedder sets module path with Py_SetPath

2020-07-20 Thread Eryk Sun
Eryk Sun added the comment: > I still don't understand why this is considered a Python security problem. > If the user can put a malicious "python3.dll" at some arbitrary spot in > the filesystem (e.g. a USB flash drive), and fool Python.exe into loading > it, then surely they could put an

[issue41327] Windows Store "stub" Python executables give confusing behaviour

2020-07-20 Thread Tzu-ping Chung
Tzu-ping Chung added the comment: What would be the best channel to raise this issue to the Windows team from the outside? It does not need to be a spam campaign, but it’d be nice if we could direct the affected users somewhere instead of pypa/packaging-problems and various issue trackers,

[issue41352] FileIO.readall() should raise "UnsupportedOperation" when in "w" mode

2020-07-20 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +20711 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21568 ___ Python tracker

[issue41352] FileIO.readall() should raise "UnsupportedOperation" when in "w" mode

2020-07-20 Thread Ziyi Wang
New submission from Ziyi Wang : Here are the two test cases: the one with FileIO.readall() fails def testReadWithWritingMode(self): r, w = os.pipe() w = os.fdopen(w, "w") w.write("hello") w.close() with io.FileIO(r, mode="w") as f: with

[issue41327] Windows Store "stub" Python executables give confusing behaviour

2020-07-20 Thread Steve Dower
Steve Dower added the comment: It already returns a non-zero exit code (should be (IIRC) 9009 to match the built-in cmd.exe result), and I've been trying to get the message added for at least a year now. Unfortunately, I can only push it so far before it has to work through the Windows

[issue38863] Improve is_cgi() in http.server

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40744] Explicitly drop support for SQLite version < 3.7.3

2020-07-20 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: Łukasz, pinging you, since you are the release manager of 3.9. Without PR 20909, 3.9 will be released without explicitly requiring SQLite 3.7.3 (setup.py looks for SQLite >= 3.7.2), compiling python 3.9 against SQLite 3.7.2 will fail at build time

[issue24764] cgi.FieldStorage can't parse multipart part headers with Content-Length and no filename in Content-Disposition

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21705] cgi.py: Multipart with more than one file is misparsed

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1047397] cgitb failures

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39727] cgi.parse() fatally attempts str.decode when handling multipart/form-data

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10879] cgi memory usage

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9968] Let cgi.FieldStorage have named uploaded file

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41140] cgitb uses the locale encoding for log files

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41139] cgi uses the locale encoding for log files

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27777] cgi.FieldStorage can't parse simple body with Content-Length and no Content-Disposition

2020-07-20 Thread Rhodri James
Change by Rhodri James : -- nosy: -Rhodri James ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29778] [CVE-2020-15523] _Py_CheckPython3 uses uninitialized dllpath when embedder sets module path with Py_SetPath

2020-07-20 Thread Larry Hastings
Larry Hastings added the comment: I still don't understand why this is considered a Python security problem. If the user can put a malicious "python3.dll" at some arbitrary spot in the filesystem (e.g. a USB flash drive), and fool Python.exe into loading it, then surely they could put an

[issue41321] Calculate timestamp is wrong in datetime.datetime

2020-07-20 Thread SilentGhost
Change by SilentGhost : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41014] warning: 'sqlite3_trace' is deprecated

2020-07-20 Thread Erlend Egeberg Aasland
Erlend Egeberg Aasland added the comment: According to the SQLite documentation, sqlite3_trace() is deprecated. See https://sqlite.org/c3ref/profile.html See also: https://bugs.python.org/issue40318 https://github.com/python/cpython/pull/19581 -- nosy: +erlendaasland

[issue41351] IDLE does not close the brackets and does not insert the closing quotes

2020-07-20 Thread Saumitra Verma
New submission from Saumitra Verma : This feature must be added -- assignee: terry.reedy components: IDLE messages: 374021 nosy: Saumitra Verma, terry.reedy priority: normal severity: normal status: open title: IDLE does not close the brackets and does not insert the closing quotes

[issue41288] Pickle crashes unpickling invalid NEWOBJ_EX opcode

2020-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: Is this fix causing the refleak build to fail on 3.8? See: https://buildbot.python.org/all/#/builders/484/builds/149 -- nosy: +lukasz.langa ___ Python tracker

[issue39603] [security] http.client: HTTP Header Injection in the HTTP method

2020-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 580fbb018fd0844806119614d752b41fc69660f9 by Łukasz Langa in branch '3.8': Python 3.8.5 https://github.com/python/cpython/commit/580fbb018fd0844806119614d752b41fc69660f9 -- nosy: +lukasz.langa ___

[issue41295] CPython 3.8.4 regression on __setattr__ in multiinheritance with metaclasses

2020-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: Released. -- priority: release blocker -> critical ___ Python tracker ___ ___ Python-bugs-list

[issue41300] IDLE: add missing import io in iomenu.py

2020-07-20 Thread Łukasz Langa
Łukasz Langa added the comment: Released. -- priority: release blocker -> critical ___ Python tracker ___ ___ Python-bugs-list

[issue41254] Add to/from string methods to datetime.timedelta

2020-07-20 Thread Paul Ganssle
Paul Ganssle added the comment: I think it is unlikely that we'll want to experiment with this directly in CPython. I don't think a fixed format (other than the annoying one that you already get from calling `str` on a timedelta) is appropriate, but designing a modular format for time

[issue41321] Calculate timestamp is wrong in datetime.datetime

2020-07-20 Thread Paul Ganssle
Paul Ganssle added the comment: Hi dh4931 — this is the expected result, assuming that the offsets changed between those two dates in your system local time. The .timestamp() method returns an epoch time, which is the number of seconds since 1970-01-01T00:00:00 UTC, and so it is inherently

[issue41350] Use of zipfile.Path causes attempt to write after ZipFile is closed

2020-07-20 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +jaraco ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41350] Use of zipfile.Path causes attempt to write after ZipFile is closed

2020-07-20 Thread Nick Henderson
New submission from Nick Henderson : In both Python 3.8.3 and 3.9.0b3, using zipfile.Path to write a file in a context manager results in an attempt to write to the zip file after it is closed. In Python 3.9.0b3: import io from zipfile import ZipFile, Path def make_zip(): """Make zip

[issue41349] idle not going full screen when I rotate screen 90° on mac

2020-07-20 Thread Ned Deily
Change by Ned Deily : -- assignee: -> terry.reedy components: +IDLE nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list

[issue41349] idle not going full screen when I rotate screen 90° on mac

2020-07-20 Thread Tim Z
New submission from Tim Z : It refuses to go full screen when I rotate screen 90° on mac -- components: macOS messages: 374014 nosy: Tim Z, ned.deily, ronaldoussoren priority: normal severity: normal status: open title: idle not going full screen when I rotate screen 90° on mac type:

[issue41348] Support replacing global function pointers in a shared library

2020-07-20 Thread Unai Martinez
New submission from Unai Martinez : As discussed in https://stackoverflow.com/questions/62947076/replace-a-function-pointer-in-a-shared-library-with-ctypes, it seems currently not possible to replace an existing global variable in a shared library which contains a function pointer, with a

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41324] Add a minimal decimal capsule API

2020-07-20 Thread Stefan Krah
Stefan Krah added the comment: I'm happy with the API, except that --with-system-libmpdec is naturally broken. So I've to release a new libmpdec, which I'd rather do soon because I don't want to revisit this later. Antoine has looked at the API. If anyone else has requests or objections,

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +20710 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21566 ___ Python tracker ___

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
New submission from Dong-hee Na : Same situation as: https://bugs.python.org/issue39425 Mean +- std dev: [master_count] 946 ns +- 14 ns -> [ac_count] 427 ns +- 7 ns: 2.22x faster (-55%) -- assignee: corona10 components: Extension Modules messages: 374010 nosy: corona10 priority:

[issue41347] collections.deque.count performance enhancement

2020-07-20 Thread Dong-hee Na
Dong-hee Na added the comment: Benchmark file -- Added file: https://bugs.python.org/file49328/bench_deque_count.py ___ Python tracker ___

[issue30155] Add ability to get tzinfo from a datetime instance in C API

2020-07-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I'm going to rename this bug to focus only on issue #1. I think we can accept > a PR adding two new macros. I would suggest calling them: > - PyDateTime_DATE_GET_TZINFO > - PyDateTime_TIME_GET_TZINFO +1 for this. -- nosy: +pitrou

[issue39604] Document PyDateTimeAPI / PyDateTime_CAPI struct

2020-07-20 Thread Antoine Pitrou
Change by Antoine Pitrou : -- stage: -> needs patch type: -> behavior versions: +Python 3.10 ___ Python tracker ___ ___

[issue41100] Build failure on macOS 11 (beta)

2020-07-20 Thread Ronald Oussoren
Change by Ronald Oussoren : -- pull_requests: +20709 pull_request: https://github.com/python/cpython/pull/21564 ___ Python tracker ___

[issue41345] Remote end closed connection without response

2020-07-20 Thread Michal Arbet
Michal Arbet added the comment: I'm using Ubuntu 20.04 with dist apache2 and default settings : michalarbet@pixla:~/work$ dpkg -l | grep apache ii apache22.4.41-4ubuntu3 amd64Apache HTTP Server ii apache2-bin

[issue41336] Sporadic segfaults during zoneinfo object creation stopped using Ctrl-C

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset add7cfc4c63f2ce2e8649906e6c8d902e95d8701 by Miss Islington (bot) in branch '3.9': bpo-41336: Fix the error handling in zoneinfo_new_instance() (GH-21546) https://github.com/python/cpython/commit/add7cfc4c63f2ce2e8649906e6c8d902e95d8701

[issue41334] Convert str(), bytes() and bytearray() to Argument Clinic

2020-07-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41342] Convert int.__round__ to Argument Clinic

2020-07-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41343] Convert complex methods to Argument Clinic

2020-07-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41342] Convert int.__round__ to Argument Clinic

2020-07-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5a2bac7fe0e7a2b67fd57c7a9176a50feed0d7a0 by Serhiy Storchaka in branch 'master': bpo-41342: Convert int.__round__ to Argument Clinic (GH-21549) https://github.com/python/cpython/commit/5a2bac7fe0e7a2b67fd57c7a9176a50feed0d7a0 --

[issue41346] test_thousand and compileall hangs on riscv64

2020-07-20 Thread Felix Yan
New submission from Felix Yan : In my riscv64 build, test_thousand (test.test_multiprocessing_forkserver.WithProcessesTestBarrier) always hangs on some locking thing, and the compileall part during installation hangs the same way. I am not sure if it's toolchain related or something else,

[issue41345] Remote end closed connection without response

2020-07-20 Thread Ilia Androshchuk
Ilia Androshchuk added the comment: Hi Michal, Which version of operating system and apache are you running? I'll try to reproduce -- nosy: +an7e ___ Python tracker ___

[issue41343] Convert complex methods to Argument Clinic

2020-07-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset e123012d79121ab543583631bb84c7fc27d06338 by Dong-hee Na in branch 'master': bpo-41343: Convert methods of complex to Argument Clinic (GH-21550) https://github.com/python/cpython/commit/e123012d79121ab543583631bb84c7fc27d06338 --

[issue41336] Sporadic segfaults during zoneinfo object creation stopped using Ctrl-C

2020-07-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset eca2549f5a5048b44ca88b9555f1c62f094e3c12 by Zackery Spytz in branch 'master': bpo-41336: Fix the error handling in zoneinfo_new_instance() (GH-21546) https://github.com/python/cpython/commit/eca2549f5a5048b44ca88b9555f1c62f094e3c12

[issue41334] Convert str(), bytes() and bytearray() to Argument Clinic

2020-07-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 12f433411bba8a0cdc4f09ba34472745ae9da0d1 by Serhiy Storchaka in branch 'master': bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clinic (GH-21535)

[issue41336] Sporadic segfaults during zoneinfo object creation stopped using Ctrl-C

2020-07-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +20708 pull_request: https://github.com/python/cpython/pull/21563 ___ Python tracker

[issue39093] tkinter objects garbage collected from non-tkinter thread cause crash

2020-07-20 Thread E. Paine
Change by E. Paine : -- keywords: +patch pull_requests: +20707 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21532 ___ Python tracker ___

[issue41345] Remote end closed connection without response

2020-07-20 Thread Michal Arbet
New submission from Michal Arbet : Hi, I'm not sure if this is really python bug, but I hope that you can check the issue. Issue is that from time to time i'm getting exception from python when sending request to server which has http keepalive option turned on. Requests send a request but

[issue30044] shutil.copystat should (allow to) copy ownership, and other attributes

2020-07-20 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Sorry, after re-reading Eryk's comment, it seems I'm not correct about CopyFileEx. -- ___ Python tracker ___

[issue30044] shutil.copystat should (allow to) copy ownership, and other attributes

2020-07-20 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Since the need to copy file ownership is common, I think there could be space for a new copy3() function which copies ownership + extended attributes (where possible). In detail: - on Windows this can be achieved by using CopyFileEx, which would also

[issue9694] argparse required arguments displayed under "optional arguments"

2020-07-20 Thread Krzysiek
Krzysiek added the comment: It seems the discussion has so far revolved around 'optional' arguments with `required=True`. What about the other way around? While trying to set `required=False` for a positional argument raises an exception, it is still possible to make the positional

[issue41273] asyncio: proactor read transport: use recv_into instead of recv

2020-07-20 Thread Tony
Tony added the comment: If the error is not resolved yet, I would prefer if we revert this change then. The new PR is kinda big I don't know when it will be merged. -- ___ Python tracker

[issue39584] multiprocessing.shared_memory: MacOS crashes by running attached Python code

2020-07-20 Thread Vinay Sharma
Change by Vinay Sharma : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38018] Increase Code Coverage for multiprocessing.shared_memory

2020-07-20 Thread Vinay Sharma
Vinay Sharma added the comment: Closing this, as all the necessary PRs have been merged. -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue23882] unittest discovery doesn't detect namespace packages when given no parameters

2020-07-20 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +20706 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/21560 ___ Python tracker ___

[issue39093] tkinter objects garbage collected from non-tkinter thread cause crash

2020-07-20 Thread E. Paine
E. Paine added the comment: Trying to manually link the PR to this issue, I have opened https://github.com/python/cpython/pull/21532 -- ___ Python tracker ___

[issue37703] Inconsistent gather with child exception

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset 58f59a962180123a6d29ece512d198b365726b33 by Miss Islington (bot) in branch '3.8': bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15312)

[issue37703] Inconsistent gather with child exception

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset 46634b7aa82f014cd0039afb7f0ed860605beb9d by Miss Islington (bot) in branch '3.9': bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15312)

[issue41344] SharedMemory crash when size is 0

2020-07-20 Thread SilentGhost
Change by SilentGhost : -- nosy: +davin, pitrou type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37703] Inconsistent gather with child exception

2020-07-20 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

  1   2   >