[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:

[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 ___

[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:

[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 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,

[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

[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:

[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

[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

[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

[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

[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. --

[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. --

[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

[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 ___

[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

[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

[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 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
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 --

[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 --

[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

[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 ___

[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

[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:

[issue10879] cgi memory usage

2020-07-20 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ 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

[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)

[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 ___

[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

[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

[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.

[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 --

[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

[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 ___

[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

[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,

[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

[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,

[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
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +20719 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21575 ___ 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)

[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:

[issue41344] SharedMemory crash when size is 0

2020-07-20 Thread Vinay Sharma
Change by Vinay Sharma : -- keywords: +patch pull_requests: +20702 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21556 ___ Python tracker ___

[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 ___

[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

[issue37703] Inconsistent gather with child exception

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

[issue37703] Inconsistent gather with child exception

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

[issue37703] Inconsistent gather with child exception

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset d42528a3a2c7d79fd2e6c9f2a02f3ce12d44c8cc by Vinay Sharma in branch 'master': bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15312) https://github.com/python/cpython/commit/d42528a3a2c7d79fd2e6c9f2a02f3ce12d44c8cc

[issue37703] Inconsistent gather with child exception

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

[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

[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 ___

[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

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

2020-07-20 Thread Inada Naoki
Change by Inada Naoki : -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: patch review -> needs patch ___ Python tracker ___

[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)

[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 ___

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

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset 2fbb0d8da95b3068dff436f7aacec1058c9b3f2a by Miss Islington (bot) in branch '3.9': bpo-40741: Update macOS installer to use SQLite 3.32.3 (GH-20979) https://github.com/python/cpython/commit/2fbb0d8da95b3068dff436f7aacec1058c9b3f2a --

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

2020-07-20 Thread Raymond Hettinger
Change by Raymond Hettinger : -- title: Random segfaults during zoneinfo object creation stopped using Ctrl-C -> Sporadic segfaults during zoneinfo object creation stopped using Ctrl-C ___ Python tracker

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

2020-07-20 Thread miss-islington
miss-islington added the comment: New changeset 892fc8d328c65f7fd076b10c94380eccf7427422 by Miss Islington (bot) in branch '3.8': bpo-40741: Update macOS installer to use SQLite 3.32.3 (GH-20979) https://github.com/python/cpython/commit/892fc8d328c65f7fd076b10c94380eccf7427422 --

[issue41344] SharedMemory crash when size is 0

2020-07-20 Thread Vinay Sharma
New submission from Vinay Sharma : On running this: shm = SharedMemory(create=True, size=0) I get the following error: Traceback (most recent call last): File "", line 1, in File "/usr/lib/python3.8/multiprocessing/shared_memory.py", line 111, in __init__ self._mmap =

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

2020-07-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +20700 pull_request: https://github.com/python/cpython/pull/21554 ___ 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: +20701 pull_request: https://github.com/python/cpython/pull/21555 ___ Python tracker ___

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-20 Thread Heyi Tang
Change by Heyi Tang : -- type: enhancement -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-20 Thread Heyi Tang
Change by Heyi Tang : -- versions: +Python 3.10, Python 3.5, Python 3.6, Python 3.7, Python 3.9 ___ Python tracker ___ ___

[issue41318] Better error message of "Cannot recover from stack overflow."

2020-07-20 Thread Heyi Tang
Change by Heyi Tang : -- versions: +Python 3.8 -Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-20 Thread Inada Naoki
Inada Naoki added the comment: Can we just remove strdup.c? How about hypot.c? -- nosy: +inada.naoki ___ Python tracker ___ ___

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

2020-07-20 Thread Ned Deily
Ned Deily added the comment: New changeset 7cf1cb36ecafabff363790d245f809d3894fbbaf by Erlend Egeberg Aasland in branch 'master': bpo-40741: Update macOS installer to use SQLite 3.32.3 (GH-20979) https://github.com/python/cpython/commit/7cf1cb36ecafabff363790d245f809d3894fbbaf --

[issue41340] Not very good strcpy implementation in cpython/Python/strdup.c

2020-07-20 Thread fj92f3jj923f923
fj92f3jj923f923 added the comment: Got it. But the fix is quite easy as I see, and does not require much affort too. -- ___ Python tracker ___

[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:

[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

[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

[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 ___

[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 ___

[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

[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 --

[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 ___

[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 ___

[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)

[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

[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

[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 ___

[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 ___

[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 ___

[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:

[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

[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 ___

  1   2   >