[issue37936] gitignore file is too broad

2019-08-26 Thread Greg Price
Greg Price added the comment: > I have a minimal fix which takes care of all the files above. I'll post that > shortly, and I may also write up a more thorough fix that tries to make it > easy not to fall into the same Git pitfall again. Both now done. * GH-15451 is that minimal fix. * Just

[issue37936] gitignore file is too broad

2019-08-26 Thread Greg Price
Change by Greg Price : -- pull_requests: +15219 pull_request: https://github.com/python/cpython/pull/15542 ___ Python tracker ___

[issue37949] Create empty __annotations__ dictionaries lazily

2019-08-26 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37827] IDLE Shell: add a terminal mode that responds to \a, \b, and \r

2019-08-26 Thread Terry J. Reedy
Terry J. Reedy added the comment: In this post, I slightly expand the terminal mode proposal and define the context in which I will accept it. The context will be the subject of other issues. In the next post (tomorrow) I will try to define a reviewable specification for the terminal mode.

[issue37945] test_locale failing

2019-08-26 Thread Tim Golden
Tim Golden added the comment: This feels like one of those changes where what's in place is clearly flawed but any change seems like it'll break stuff which people have had in place for years. I'll try to look at a least-breaking change but I'm honestly not sure what that would look like.

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread Ned Deily
Ned Deily added the comment: Thanks once again, Rajiv! Fix merged for release in 3.8.0b4 and 3.7.5. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset 91020fade6ca0f22eef2d338be1380b17385e715 by Miss Islington (bot) in branch '3.8': bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538) https://github.com/python/cpython/commit/91020fade6ca0f22eef2d338be1380b17385e715

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset 1bf672f53a83c471e6fc4599d2d5149fd6842ff2 by Miss Islington (bot) in branch '3.7': bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538) https://github.com/python/cpython/commit/1bf672f53a83c471e6fc4599d2d5149fd6842ff2

[issue33523] loop.run_until_complete re-entrancy to support more complicated codebases in transition to asyncio

2019-08-26 Thread Jason Fried
Jason Fried added the comment: Yeah I have to agree at this point, from a naive point of view it looks awesome, but its just as bad as loosing gil guarantees. On Mon, Aug 26, 2019 at 03:04 Andrew Svetlov wrote: > > Andrew Svetlov added the comment: > > The solution produces subtle and

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +15218 pull_request: https://github.com/python/cpython/pull/15540 ___ Python tracker ___

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +15217 stage: commit review -> patch review pull_request: https://github.com/python/cpython/pull/15539 ___ Python tracker ___

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread Ned Deily
Ned Deily added the comment: New changeset 8bf5fef8737fdd12724b9340d76a4ed391c4ad8a by Ned Deily (vrajivk) in branch 'master': bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538) https://github.com/python/cpython/commit/8bf5fef8737fdd12724b9340d76a4ed391c4ad8a

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: Looks like the regression happened 2017-11-02 in commit c29b585fd4b -- ___ Python tracker ___

[issue37958] Adding get_profile_dict to pstats

2019-08-26 Thread Daniel Olshansky
New submission from Daniel Olshansky : pstats is really useful or profiling and printing the output of the execution of some block of code, but I've found on multiple occasions that sometimes I'd like to access this output directly in an easily usable dictionary on which I can further

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread Ned Deily
Ned Deily added the comment: Thanks, Rajiv, your diagnosis and fix in PR 15538 is indeed correct. -- assignee: vstinner -> ned.deily stage: patch review -> commit review ___ Python tracker

[issue37935] Improve performance of pathlib.scandir()

2019-08-26 Thread hongweipeng
hongweipeng added the comment: Scandir() will be close when it iteration is over.You can see ScandirIterator_iternext: ``` static PyObject * ScandirIterator_iternext(ScandirIterator *iterator) { while (1) { ... } /* Error or no more files */

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread Rajiv Vijayakumar
Rajiv Vijayakumar added the comment: I think I have found the root cause - there appears to be a typo in the rusage implementation - instead of computing the total time as utime+stime, the code performs utime+utime, which explains the doubling observed. I have create a PR with the fix. My

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread Rajiv Vijayakumar
Change by Rajiv Vijayakumar : -- pull_requests: +15215 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15538 ___ Python tracker ___

[issue37328] remove deprecated HTMLParser.unescape

2019-08-26 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37328] remove deprecated HTMLParser.unescape

2019-08-26 Thread Inada Naoki
Inada Naoki added the comment: New changeset fae0ed5099de594a9204071d555cb8b76368cbf4 by Inada Naoki in branch 'master': bpo-37328: remove deprecated HTMLParser.unescape (GH-14186) https://github.com/python/cpython/commit/fae0ed5099de594a9204071d555cb8b76368cbf4 --

[issue34276] urllib.parse doesn't round-trip file URI's with multiple leading slashes

2019-08-26 Thread Ashwin Ramaswami
Change by Ashwin Ramaswami : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: I'm unclear on why our production release being built on macoS 10.11.x+ or earlier and why it using Clang 6.0 (clang-600.0.57). For me, Python builds fine (and does have this issue) on Mojave 10.14.6 using Clang 10.0.1 (clang-1001.0.46.4). ISTM that

[issue37705] winerror_to_errno implementation

2019-08-26 Thread Eryk Sun
Eryk Sun added the comment: > It also seems like at least some of the WSA* constants (e.g. > WSAEBADF==10009) are the equivalent errno plus 1 > (e.g.EBADF==9). Should we be mapping those back to the > errno value? Mapping WSAEINTR (10004) -> EINTR (4) and WSAEACCES (10013) -> EACCES

[issue37957] Allow regrtest to receive a file with test (and subtests) to ignore

2019-08-26 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : When building Python in some uncommon platforms (I am looking at you Solaris and AIX) there are some known tests that will fail. Right now, regrtest has the ability to ignore entire tests using the -x option and to receive a filter file using the

[issue36763] Implementation of the PEP 587

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset 1d4285a042772c7a31c4e19f8dbcbcf9b2ee3b95 by Miss Islington (bot) in branch '3.8': bpo-36763: Make Py_BytesMain() public (GH-15532) https://github.com/python/cpython/commit/1d4285a042772c7a31c4e19f8dbcbcf9b2ee3b95 --

[issue36763] Implementation of the PEP 587

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: I marked the PEP 587 Status as Final. The implementation should now be complete. If there are bugs, they can be fixed in following issues :-) I close now this issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue24313] json fails to serialise numpy.int64

2019-08-26 Thread Vicki Brown
Vicki Brown added the comment: Note also that pandas DataFrame.to_json() method has no issue with int64. Perhaps you could borrow their code. -- ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9a943b4ce13fac26873b8100e89c818c5c47ac4b by Victor Stinner in branch 'master': bpo-36763: Make Py_BytesMain() public (GH-15532) https://github.com/python/cpython/commit/9a943b4ce13fac26873b8100e89c818c5c47ac4b --

[issue36763] Implementation of the PEP 587

2019-08-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +15214 pull_request: https://github.com/python/cpython/pull/15535 ___ Python tracker ___

[issue37925] --embed not included in python3.8-config usage/--help

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: Thanks Batuhan Taşkaya for the fix, and thanks Miro Hrončok for the bug report! Note: --embed was already mentioned in python-config.py usage help. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue37531] Fix regrtest timeout for subprocesses: regrtest -jN --timeout=SECONDS

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: Eryk Sun > Alternatively, instead of special casing the file type and spinning on > PeekNamedPipe, the workaround could be based on a multiple-object wait that > includes the child process handle. (...) Well, maybe we could do something to enhance

[issue13341] Incorrect documentation for "u" PyArg_Parse format unit

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: I don't think that it's still worth it to update Python 2 documentation at this point. I suggest to focus on enhancement of the Python 3 documentation instead. -- ___ Python tracker

[issue2506] Add mechanism to disable optimizations

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: > There are different optimizations on different levels (AST, bytecode > generation, peepholer), would be nice to control them separately. This means > that we should pass a bitset to the compiler. What's the use case for enabling some AST optimizations

[issue36763] Implementation of the PEP 587

2019-08-26 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15213 pull_request: https://github.com/python/cpython/pull/15532 ___ Python tracker ___

[issue37925] --embed not included in python3.8-config usage/--help

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset b8a22ac856944d1dded46ed4caa795e07bfaf0c6 by Miss Islington (bot) in branch '3.8': bpo-37925: Mention --embed in python-config usage (GH-15458) https://github.com/python/cpython/commit/b8a22ac856944d1dded46ed4caa795e07bfaf0c6 -- nosy:

[issue37945] test_locale failing

2019-08-26 Thread Steve Dower
Steve Dower added the comment: Oh man, this is too broken for me to think about today... If someone feels like writing a Windows-specific normalize() function to totally replace the Unix one, feel free, but it looks like we won't be able to get away with anything less. The "easy" change

[issue37945] test_locale failing

2019-08-26 Thread Steve Dower
Steve Dower added the comment: > test_getsetlocale_issue1813 (test.test_locale.TestMiscellaneous) ... skipped > 'test needs Turkish locale' Yeah, looks like they're failing that part of the test. I'll run them again with the hyphen. -- ___

[issue37925] --embed not included in python3.8-config usage/--help

2019-08-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +15212 pull_request: https://github.com/python/cpython/pull/15530 ___ Python tracker ___

[issue37925] --embed not included in python3.8-config usage/--help

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: New changeset d3cc189b17c86f670198aca109b5ffa2d526d87a by Victor Stinner (Batuhan Taşkaya) in branch 'master': bpo-37925: Mention --embed in python-config usage (GH-15458) https://github.com/python/cpython/commit/d3cc189b17c86f670198aca109b5ffa2d526d87a

[issue37945] test_locale failing

2019-08-26 Thread Eryk Sun
Eryk Sun added the comment: > None of that explains why the test doesn't seem to run at all on the > buildbots though. Are the buildbots using an older version of UCRT? BCP 47 locales used to strictly require a hyphen as the delimiter (e.g. 'tr-TR') instead of underscore (e.g. 'tr_TR').

[issue30162] Add _PyTuple_Empty and make PyTuple_New(0) never failing

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: We could add a _PyTuple_Init() function to ensure that the empty tuple singleton is created as soon as possible, as call it early, in pycore_init_types(). -- ___ Python tracker

[issue24479] Support LMMS project files in mimetypes.guess_type

2019-08-26 Thread STINNER Victor
Change by STINNER Victor : -- keywords: -easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24479] Support LMMS project files in mimetypes.guess_type

2019-08-26 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37945] test_locale failing

2019-08-26 Thread Steve Dower
Steve Dower added the comment: Oh yeah, that locale_alias table is useless on Windows :( But at least the function is documented in such a way that we can change it: "The returned locale code is formatted for use with :func:`setlocale`." Alternatively, we could make setlocale() do its own

[issue37945] test_locale failing

2019-08-26 Thread Eryk Sun
Eryk Sun added the comment: We get into trouble with test_getsetlocale_issue1813 because normalize() maps "tr_TR" (supported) to "tr_TR.ISO8859-9" (not supported). >>> locale.normalize('tr_TR') 'tr_TR.ISO8859-9' We should skip normalize() in Windows. It's based on a POSIX

[issue24313] json fails to serialise numpy.int64

2019-08-26 Thread Vicki Brown
Vicki Brown added the comment: This is still broken. With pandas being popular, it's more likely someone might hit it. Can we fix this? At the very least, the error message needs to be made much more specific. I have created a dictionary containing pandas stats. ``` def summary_stats(s):

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> compile error ___ Python tracker ___

[issue25012] pathlib should allow converting to absolute paths without resolving symlinks

2019-08-26 Thread Socob
Change by Socob <206a8...@opayq.com>: -- nosy: +Socob ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Can we close this issue or remove the release blocker? -- ___ Python tracker ___ ___

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread Steve Dower
Steve Dower added the comment: Going to call this complete now. If there's a reason to take another update before 3.8 releases, we should create a new issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread Steve Dower
Steve Dower added the comment: New changeset 04b750740be6e7c4a7693f1135c4788b40a028c1 by Steve Dower in branch '3.8': bpo-37664: Update ensurepip bundled wheels, again (GH-15483) https://github.com/python/cpython/commit/04b750740be6e7c4a7693f1135c4788b40a028c1 --

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread Christian Heimes
Christian Heimes added the comment: I hope that I'll be able to drop our sha3 copy soonish. OpenSSL 1.0.2 reaches EOL by the end of the year. In theory I could require >= 1.1.1 in 3.9... -- ___ Python tracker

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset c1c1a3396391dcc948d332607a0f673e4434da97 by Miss Islington (bot) (Steve Dower) in branch '3.7': [3.7] bpo-37664: Update ensurepip bundled wheels, again (GH-15483) (GH-15529)

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 56c4d2d057de0dcb968148fa1286e587e91f5c91 by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-37798: Minor code formatting and comment clean-ups. (GH-15526) (GH-15527)

[issue2506] Add mechanism to disable optimizations

2019-08-26 Thread Arthur Goldberg
Arthur Goldberg added the comment: Appreciate you working on this Serhiy and Victor! -- ___ Python tracker ___ ___ Python-bugs-list

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15211 pull_request: https://github.com/python/cpython/pull/15529 ___ Python tracker ___

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15210 pull_request: https://github.com/python/cpython/pull/15528 ___ Python tracker ___

[issue37945] test_locale failing

2019-08-26 Thread Steve Dower
Steve Dower added the comment: I pushed a custom buildbot run that only runs this test in verbose mode, and it looks like the test is being skipped some other way? https://buildbot.python.org/all/#/builders/48/builds/36 https://buildbot.python.org/all/#/builders/42/builds/54 I don't see any

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +15209 pull_request: https://github.com/python/cpython/pull/15527 ___ Python tracker ___

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 6fee0f8ea72fa68155a32b33b6c0ed9e5a740e45 by Raymond Hettinger in branch 'master': bpo-37798: Minor code formatting and comment clean-ups. (GH-15526) https://github.com/python/cpython/commit/6fee0f8ea72fa68155a32b33b6c0ed9e5a740e45

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset 2bb4fc379b14377e1cdcefad8d5f2fbbb1172524 by Miss Islington (bot) in branch '3.8': bpo-37055: fix warnings in _blake2 module (GH-14646) https://github.com/python/cpython/commit/2bb4fc379b14377e1cdcefad8d5f2fbbb1172524 --

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset 10c452b894d95fed06056fe11e8fe8e1a2a60040 by Miss Islington (bot) (Pradyun Gedam) in branch 'master': bpo-37664: Update ensurepip bundled wheels, again (GH-15483) https://github.com/python/cpython/commit/10c452b894d95fed06056fe11e8fe8e1a2a60040

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-26 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +15208 pull_request: https://github.com/python/cpython/pull/15526 ___ Python tracker ___

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread Gregory P. Smith
Gregory P. Smith added the comment: oh well, no pony for us this decade. :) -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +15207 pull_request: https://github.com/python/cpython/pull/15525 ___ Python tracker ___

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset b27cbec801e17a13d7fef49116a8fc279930d2b1 by Miss Islington (bot) (Inada Naoki) in branch 'master': bpo-37055: fix warnings in _blake2 module (GH-14646) https://github.com/python/cpython/commit/b27cbec801e17a13d7fef49116a8fc279930d2b1

[issue37941] python -m and runpy.run_module set different __name__ by default

2019-08-26 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread Christian Heimes
Christian Heimes added the comment: Although OpenSSL comes with blake2, it does not support any of the advanced features like keying, personalization, or tree hashing. See https://github.com/openssl/openssl/issues/980 -- ___ Python tracker

[issue37936] gitignore file is too broad

2019-08-26 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37705] winerror_to_errno implementation

2019-08-26 Thread Steve Dower
Steve Dower added the comment: While I'm inclined to think it's okay to find the CRT sources (e.g. "C:\Program Files (x86)\Windows Kits\10\Source\10.0.18362.0\ucrt\misc\errno.cpp") and extract the table from there as part of build, the problem I have is that it is woefully incomplete. I'd

[issue37935] Improve performance of pathlib.scandir()

2019-08-26 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37055] Numerous warnings with blake2 module

2019-08-26 Thread Gregory P. Smith
Gregory P. Smith added the comment: META: Do we still have platforms we support that we do not also require a modern enough OpenSSL version in order for CPython to build that'd provide blake2 for us? I'd love to ditch maintenance of our own copies of the various secure hash function

[issue37951] Disallow fork in a subinterpreter broke subprocesses in mod_wsgi daemon mode

2019-08-26 Thread Gregory P. Smith
Gregory P. Smith added the comment: FWIW, _posixsubprocess.fork_exec() should be safe to allow. The only thing within it to disallow, if you're going to bother to check this at all, is any use of the legacy preexec_fn support. -- nosy: +gregory.p.smith

[issue37945] test_locale failing

2019-08-26 Thread Tim Golden
Tim Golden added the comment: I agree that that could be a fix. And certainly, if it turns out that this could never have (recently) worked as Eryk is suggesting, then let's go for it. But I still have this uneasy feeling that it's not failing on the buildbots and I can't see any sign of a

[issue37945] test_locale failing

2019-08-26 Thread Steve Dower
Steve Dower added the comment: So is the fix here to update locale._build_localename to check something like this? if encoding is None: return language elif sys.platform == 'win32' and encoding not in {'utf8', 'utf-8'}: return language else: return language + '.' + encoding

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Steve Dower
Steve Dower added the comment: Great work, Pablo! This does *not* look like it was an easy one to track down. -- nosy: +steve.dower ___ Python tracker ___

[issue37956] UUID authorize version 6+ with variant RFC 4122

2019-08-26 Thread mael arnaud
New submission from mael arnaud : The docs stipulates: UUID.version The UUID version number (1 through 5, meaningful only when the variant is RFC_4122). But you can absolutely do: >>> uuid.UUID("25cdb2ef-3764-bb01-9b17-433defc74464") which yields: >>>

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for looping me in. Waiting for this to be merged. -- ___ Python tracker ___ ___

[issue37951] Disallow fork in a subinterpreter broke subprocesses in mod_wsgi daemon mode

2019-08-26 Thread Łukasz Langa
Łukasz Langa added the comment: Christian, you're right to treat this as Release Blocker. Let's have this fixed. Assigning Eric? -- assignee: -> eric.snow ___ Python tracker

[issue22347] mimetypes.guess_type("//example.com") misinterprets host name as file name

2019-08-26 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +15206 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15522 ___ Python tracker ___

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Scheduled another two custom builds on the 3.8 branch: https://buildbot.python.org/all/#/builders/223/builds/85 https://buildbot.python.org/all/#/builders/224/builds/71 -- ___ Python tracker

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset ed8af33cce5554545d2bd079b23fe551d26fb4bd by Miss Islington (bot) in branch '3.8': bpo-37954: Fix reference leak in the symtable (GH-15514) https://github.com/python/cpython/commit/ed8af33cce5554545d2bd079b23fe551d26fb4bd -- nosy:

[issue37664] Update bundled pip and setuptools

2019-08-26 Thread Steve Dower
Steve Dower added the comment: Just getting Łukasz's attention, as this pip release has a critical 3.8 fix for wheel generation (IIUC). Pradyun - just looking for a NEWS file update in your PR to make sure we have the right version numbers listed. -- priority: normal -> release

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-26 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35829] datetime: parse "Z" timezone suffix in fromisoformat()

2019-08-26 Thread hongweipeng
Change by hongweipeng : -- nosy: +hongweipeng ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37947] symtable_handle_namedexpr does not adjust correctly the recursion level

2019-08-26 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37947] symtable_handle_namedexpr does not adjust correctly the recursion level

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 3769425abd8da9a59b9645baf90ef49b9c69c140 by Pablo Galindo in branch '3.8': [3.8] bpo-37947: Adjust correctly the recursion level in symtable for named expressions (GH-15499) (GH-15515)

[issue37955] mock.patch incorrect reference to Mock

2019-08-26 Thread Paulo Henrique Silva
Change by Paulo Henrique Silva : -- keywords: +patch pull_requests: +15204 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15521 ___ Python tracker

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Scheduled two custom builds of the 3.x refleak buildbots: https://buildbot.python.org/all/#/builders/80/builds/684 https://buildbot.python.org/all/#/builders/1/builds/695 -- ___ Python tracker

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +15203 pull_request: https://github.com/python/cpython/pull/15518 ___ Python tracker ___

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 4901dc46da5ecb131f8d902a0fbd704934f209e1 by Pablo Galindo in branch 'master': bpo-37954: Fix reference leak in the symtable (GH-15514) https://github.com/python/cpython/commit/4901dc46da5ecb131f8d902a0fbd704934f209e1 --

[issue37955] mock.patch incorrect reference to Mock

2019-08-26 Thread Paulo Henrique Silva
New submission from Paulo Henrique Silva : When explaining the usage of keyword arguments on mock.patch: ``` patch() takes arbitrary keyword arguments. These will be passed to the Mock (or new_callable) on construction. ``` default new_callable is MagicMock and it should be mentioned here

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: See also https://bugs.python.org/issue37947 -- ___ Python tracker ___ ___

[issue37947] symtable_handle_namedexpr does not adjust correctly the recursion level

2019-08-26 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +15202 pull_request: https://github.com/python/cpython/pull/15515 ___ Python tracker ___

[issue37947] symtable_handle_namedexpr does not adjust correctly the recursion level

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 0e4ea16336685cf3fa353d8c54af59b45b2d5c33 by Pablo Galindo in branch 'master': bpo-37947: Adjust correctly the recursion level in symtable for named expressions (GH-15499)

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +15200 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15514 ___ Python tracker

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Bisecting points at commit 5dbe0f59b7a4f39c7c606b48056bc29e406ebf78 as the commit that introduced the reference leaks -- nosy: +ncoghlan ___ Python tracker

[issue37954] Multiple tests are leaking references in AMD64 Windows8.1 Refleaks 3.x and x86 Gentoo Refleaks 3.x buildbots

2019-08-26 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : BUILDBOT FAILURE REPORT === Builder name: AMD64 Windows8.1 Refleaks 3.x Builder url: https://buildbot.python.org/all/#/builders/80/ Build url: https://buildbot.python.org/all/#/builders/80/builds/683 Failed tests

[issue22699] cross-compilation of Python3.4

2019-08-26 Thread Sam
Sam added the comment: Has there been any update on this? I've run into this issue trying to cross-compile python for Android. I've tried 3.7.4, 3.8 and current master, both in-source and out of source builds, all ending with the modules failing to compile due to wrong paths. ...

[issue37953] Fix ForwardRef equality checks

2019-08-26 Thread SilentGhost
Change by SilentGhost : -- nosy: +gvanrossum, levkivskyi ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

  1   2   >