[issue37805] json.dump(..., skipkeys=True) has no unit tests

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

[issue37805] json.dump(..., skipkeys=True) has no unit tests

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

[issue37805] json.dump(..., skipkeys=True) has no unit tests

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset 44cd86bbdddb1f7b05deba2c1986a1e98f992429 by Miss Islington (bot) (Dong-hee Na) in branch 'master': bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489) https://github.com/python/cpython/commit/44cd86bbdddb1f7b05deba2c1986a1e98f99242

[issue36917] ast.NodeVisitor no longer calls visit_Str

2019-08-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset c3ea41e9bf100a5396b851488c3efe208e5e2179 by Serhiy Storchaka in branch 'master': bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant(). (GH-15490) https://github.com/python/cpython/commit/c3ea41e9bf100a5396b851488c3efe208e

[issue36917] ast.NodeVisitor no longer calls visit_Str

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

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-26 Thread Mark Dickinson
Mark Dickinson added the comment: I'd also say that SciPy does this much better than the Python math library could ever hope to (without that math library effectively becoming a copy of scipy.special). It probably wouldn't be long before a user of the new Bessel functions also wanted Bessel

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-26 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue33955] Implement PyOS_CheckStack on macOS using pthread_get_stack*_np

2019-08-26 Thread Dong-hee Na
Dong-hee Na added the comment: @ronaldoussoren Do you have any ideas to resume this issue again? -- ___ Python tracker ___ ___ Pyth

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-26 Thread Mark Dickinson
Mark Dickinson added the comment: Tim, Raymond: thoughts? I'm inclined to close this as rejected. -- ___ Python tracker ___ ___ Pyt

[issue27575] dict viewkeys intersection slow for large dicts

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 998cf1f03a61de8a0cd3811faa97973d4022bc55 by Raymond Hettinger (Forest Gregg) in branch 'master': bpo-27575: port set intersection logic into dictview intersection (GH-7696) https://github.com/python/cpython/commit/998cf1f03a61de8a0cd3811faa97

[issue27575] dict viewkeys intersection slow for large dicts

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks David and Forest. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue15542] Documentation incorrectly suggests __init__ called after direct __new__ call

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset c841fb9e065c393bba5d5505238f7e286f1dcfc6 by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-15542: Documentation incorrectly suggests __init__ called after direct __new__ call (GH-15478) (GH-15506) https://github.com/python/cp

[issue15542] Documentation incorrectly suggests __init__ called after direct __new__ call

2019-08-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks everyone. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue37805] json.dump(..., skipkeys=True) has no unit tests

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset a3875171d746f90f49adfcaa015525b20a3874d3 by Miss Islington (bot) in branch '3.8': bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489) https://github.com/python/cpython/commit/a3875171d746f90f49adfcaa015525b20a3874d3 -- _

[issue37805] json.dump(..., skipkeys=True) has no unit tests

2019-08-26 Thread Inada Naoki
Inada Naoki added the comment: thanks -- nosy: +inada.naoki resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37950] ast.dump() with incomplete node

2019-08-26 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : There are several issues in ast.dump() with incompletely initialized node. Some fields and attributes of AST nodes are optional, but creating an AST node without them leads ast.dump() to fail or to produce incorrect result. 1. With annotate_fields=False

[issue37805] json.dump(..., skipkeys=True) has no unit tests

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset a976283821ab73ba080da47cbe95802ce66bb0a4 by Miss Islington (bot) in branch '3.7': bpo-37805: Add tests for json.dump(..., skipkeys=True) (GH-15489) https://github.com/python/cpython/commit/a976283821ab73ba080da47cbe95802ce66bb0a4 -- _

[issue36917] ast.NodeVisitor no longer calls visit_Str

2019-08-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 522a394a72f107ca55701371529b5e4ed20c9fff by Serhiy Storchaka (Miss Islington (bot)) in branch '3.8': [3.8] bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant(). (GH-15490) (GH-15509) https://github.com/python/cpython/comm

[issue37950] ast.dump() with incomplete node

2019-08-26 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +15196 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15510 ___ Python tracker ___

[issue36917] ast.NodeVisitor no longer calls visit_Str

2019-08-26 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15197 pull_request: https://github.com/python/cpython/pull/15511 ___ Python tracker ___

[issue37949] Create empty __annotations__ dictionaries lazily

2019-08-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Guido's Time Machine strikes back. >>> import gc >>> def f(): pass ... >>> gc.get_referents(f) [", line 1>, {'__name__': '__main__', '__doc__': None, '__package__': None, '__loader__': , '__spec__': None, '__annotations__': {}, '__builtins__': , 'gc': ,

[issue32847] Add DirectoryNotEmptyError subclass of OSError

2019-08-26 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +pitrou versions: +Python 3.9 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37945] test_locale failing

2019-08-26 Thread Eryk Sun
Eryk Sun added the comment: > But my question is, then: why is my machine failing this test [the > only one which uses this two-part locale] and not the buildbots or > (presumably) any other Windows developer? test_getsetlocale_issue1813 fails for me as well. I can't imagine how setlocale(L

[issue37948] get_type_hints fails if there are un-annotated fields in a dataclass

2019-08-26 Thread Eric V. Smith
Change by Eric V. Smith : -- assignee: -> eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

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

2019-08-26 Thread Christian Heimes
New submission from Christian Heimes : BPO https://bugs.python.org/issue34651 disabled fork in subinterpreters. The patch also disabled fork() in _posixsubprocess.fork_exec(). This broke the ability to spawn subprocesses in mod_wsgi daemons, which use subinterpreters. Any attempt to spawn (fo

[issue37952] Add support for export_keying_material to SSL library

2019-08-26 Thread Christer Weinigel
New submission from Christer Weinigel : Add support for the export_keying_material function to the SSL library. Tested with Python 3.7.4 and Python master branch: https://github.com/wingel/cpython/tree/export_keying_material-3.7.4 https://github.com/wingel/cpython/tree/export_keying_material-m

[issue37952] Add support for export_keying_material to SSL library

2019-08-26 Thread Christian Heimes
Christian Heimes added the comment: Could you please explain the purpose of the feature and why you want to expose the interface? What's the use case? As this is a new feature, Python 3.7 and 3.8 are out of scope. -- versions: -Python 3.7 ___ Pyt

[issue37952] Add support for export_keying_material to SSL library

2019-08-26 Thread Christer Weinigel
Christer Weinigel added the comment: I'm doing an implementation of the NTS protocol for my customer Netnod: https://github.com/Netnod/nts-poc-python NTS is draft RFC on its way to become a standard: https://datatracker.ietf.org/doc/draft-ietf-ntp-using-nts-for-ntp/ NTS requires the export_

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 1c0600998681295735a18690fae184b0c9a4ca51 by Andrew Svetlov in branch 'master': bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread (#15492) https://github.com/python/cpython/commit/1c0600998681295735a18690fae184b0c9a4c

[issue34679] asyncio.add_signal_handler call fails if not on main thread

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

[issue36344] install_certificates.command too complicated

2019-08-26 Thread Ned Deily
Ned Deily added the comment: So as not to delay 3.8.0b4, I'm removing this as a "release blocker'. Once the implementation is in master, we can consider backporting to other releases. -- priority: release blocker -> critical versions: +Python 3.9 _

[issue34679] asyncio.add_signal_handler call fails if not on main thread

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

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

2019-08-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: The solution produces subtle and error-prone code. It can live in third party library but not good enough for stdlib I think. -- ___ Python tracker ___

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-26 Thread miss-islington
miss-islington added the comment: New changeset 69d22b8fee442c12829a1032a72489c8133de271 by Miss Islington (bot) in branch '3.8': bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread (GH-15492) https://github.com/python/cpython/commit/69d22b8fee442c12829a1032a72489c8

[issue30076] Opcode names BUILD_MAP_UNPACK_WITH_CALL and BUILD_TUPLE_UNPACK_WITH_CALL are too long

2019-08-26 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +15199 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15513 ___ Python tracker ___

[issue30076] Opcode names BUILD_MAP_UNPACK_WITH_CALL and BUILD_TUPLE_UNPACK_WITH_CALL are too long

2019-08-26 Thread Zackery Spytz
Zackery Spytz added the comment: I have created a pull request for this issue. Please take a look. -- nosy: +ZackerySpytz ___ Python tracker ___ __

[issue27260] Missing equality check for super objects

2019-08-26 Thread Zackery Spytz
Zackery Spytz added the comment: > I don't think this should be done. I agree, and I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker ___

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-26 Thread Zackery Spytz
Zackery Spytz added the comment: > IMO this is the province of things like scipy.special. The Bessel functions > (and many others) are already easily available to users of the scientific > Python stack. I don't really see a need to have them in core Python. I agree. -- nosy: +Zacker

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

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: subprocess still work in subinterpreters in Python 3.8 if posix_spawn() can be used, but posix_spawn() is only used under some conditions: https://docs.python.org/dev/whatsnew/3.8.html#optimizations "The subprocess module can now use the os.posix_spawn() func

[issue37909] Thread pool return ref hold memory

2019-08-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: In asyncio code please use non-blocking code and await a future returned by run_until_complete. The following code doesn't leak: import asyncio import concurrent import threading def prepare_a_giant_list(): m = [] for i in range(1000*1000):

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

2019-08-26 Thread STINNER Victor
STINNER Victor added the comment: > process_time: namespace(adjustable=False, > implementation='clock_gettime(CLOCK_PROCESS_CPUTIME_ID)', monotonic=True, > resolution=1.0002e-06) Using CLOCK_PROCESS_CPUTIME_ID clock for time.process_time() looks good to me. I don't know why depe

[issue37884] Optimize Fraction() and statistics.mean()

2019-08-26 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: For the record: making a public math.as_integer_ratio() function was rejected at #37822. -- ___ Python tracker ___ _

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

2019-08-26 Thread Christian Heimes
Christian Heimes added the comment: It's a bit more complicated. FreeIPA uses cryptography, which uses asn1crypto, which uses ctypes, which is broken in mod_wsgi due to bpo-34651. It's not just FreeIPA that is affected by the issue. Any application running in mod_wsgi is potentially affected

[issue36917] ast.NodeVisitor no longer calls visit_Str

2019-08-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset c2388622923c81b5f06b0c9a5ce821fc03c624b9 by Serhiy Storchaka in branch '3.7': bpo-36917: Backport basic test for ast.NodeVisitor. (GH-15511) https://github.com/python/cpython/commit/c2388622923c81b5f06b0c9a5ce821fc03c624b9 -- __

[issue36917] ast.NodeVisitor no longer calls visit_Str

2019-08-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your report and discussion Anthony. Added the default implementation of visit_Constant which calls corresponding visitor for old constant nodes. It emits a deprecation warning (PendingDeprecationWarning in 3.8 and DeprecationWarning in 3.9) a

[issue30076] Opcode names BUILD_MAP_UNPACK_WITH_CALL and BUILD_TUPLE_UNPACK_WITH_CALL are too long

2019-08-26 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- versions: +Python 3.9 -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs-lis

[issue37754] Consistency of Unix's shared_memory implementation with windows

2019-08-26 Thread Vinay Sharma
Vinay Sharma added the comment: Since, advisory locking doesn't work on integer file descriptors which are returned by shm_open on macos, I was thinking of an alternative way of fixing this. I was thinking of using a shared semaphore, which will store the reference count of the processes us

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-26 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks for your detailed opinion, Mark. After reflecting on your arguments I agree that we should close this issue as rejected. Thanks to everyone! -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___

[issue37953] Fix ForwardRef equality checks

2019-08-26 Thread Dominic Littlewood
New submission from Dominic Littlewood <[email protected]>: Apologies for issuing a pull request without an associated issue. I'm kind of new to this. Nevermind, I'm making one now. The typing module currently contains a bug where ForwardRefs change their hash and equality once they are

[issue37953] Fix ForwardRef equality checks

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

[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. ... CC='/hom

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

[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
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +15200 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15514 ___ 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) https://github.com/python/cpython/commit/0e4ea16336685cf3fa353d8c5

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

[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 ___ ___ Python-bugs-list

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

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

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

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

[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) https://github.com/python/cpython/commit/3769425abd8

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

[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: https://mail.py

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

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

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

[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

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

[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

[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 ___ ___ Python-bugs-l

[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: >>> uuid.UUID("25cdb2ef-3764-bb01-9b17-43

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

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

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

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

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

[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: https://mail.

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

[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: https://mail.

[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

[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: https://mail.pyth

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

[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 Gregory P. Smith
Gregory P. Smith added the comment: oh well, no pony for us this decade. :) -- ___ Python tracker ___ ___ Python-bugs-list mailing

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

[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

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

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

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

[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

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

[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

[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) https://github.com/python/cpython/commit/56c4d2d057de0dcb96814

[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) https://github.com/python/cpython/commit/c1c1a3396391dcc948d332607a0f67

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

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

  1   2   >