[issue30052] URL Quoting page links to function Bytes instead of defintion

2019-06-21 Thread Cheryl Sabella
Cheryl Sabella added the comment: Hi @wim.glenn, Thanks for the report. It looks like the same issue applies to all the built-in functions that are handled this way, not just bytearray and bytes. So, dict, frozenset, list, memoryview, range, set, str, and tuple too. I'm not sure what th

[issue37362] test_gdb must not fail on "unexpected" messages written into stderr

2019-06-21 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +14121 pull_request: https://github.com/python/cpython/pull/14297 ___ Python tracker ___ __

[issue37351] Drop libpython38.a from Windows release

2019-06-21 Thread Steve Dower
Steve Dower added the comment: New changeset f5690925df897cf45818bf944b28d13f37b9f8ca by Steve Dower in branch 'master': bpo-37351: Removes libpython38.a from standard Windows distribution (#14276) https://github.com/python/cpython/commit/f5690925df897cf45818bf944b28d13f37b9f8ca --

[issue37351] Drop libpython38.a from Windows release

2019-06-21 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +14122 pull_request: https://github.com/python/cpython/pull/14298 ___ Python tracker ___ _

[issue37362] test_gdb must not fail on "unexpected" messages written into stderr

2019-06-21 Thread miss-islington
miss-islington added the comment: New changeset 16ec95bb191e4136630de7437f75636d4b6a450f by Miss Islington (bot) in branch '3.7': bpo-37362: test_gdb now ignores stderr (GH-14287) https://github.com/python/cpython/commit/16ec95bb191e4136630de7437f75636d4b6a450f -- nosy: +miss-isling

[issue36511] Add Windows ARM32 buildbot

2019-06-21 Thread Steve Dower
Steve Dower added the comment: New changeset f3e38ec7f014557296f6cc7b60a33d65faad1716 by Steve Dower in branch '3.8': bpo-36511: Fix -u parameters for ARM32 tests (GH-14280) https://github.com/python/cpython/commit/f3e38ec7f014557296f6cc7b60a33d65faad1716 -- ___

[issue37362] test_gdb must not fail on "unexpected" messages written into stderr

2019-06-21 Thread miss-islington
miss-islington added the comment: New changeset 3523e0c47be372477e990df7435a0f45be80fd50 by Miss Islington (bot) in branch '3.8': bpo-37362: test_gdb now ignores stderr (GH-14287) https://github.com/python/cpython/commit/3523e0c47be372477e990df7435a0f45be80fd50 -- _

[issue37364] Use io.open_code for .pth files

2019-06-21 Thread Steve Dower
Change by Steve Dower : -- assignee: -> steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue37364] Use io.open_code for .pth files

2019-06-21 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +14123 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14299 ___ Python tracker _

[issue37362] test_gdb must not fail on "unexpected" messages written into stderr

2019-06-21 Thread STINNER Victor
STINNER Victor added the comment: New changeset adcdb1e4f5eb3c63e4e40242737be9c00a26764c by Victor Stinner in branch '2.7': bpo-37362: test_gdb now ignores stderr (GH-14287) (GH-14297) https://github.com/python/cpython/commit/adcdb1e4f5eb3c63e4e40242737be9c00a26764c --

[issue37362] test_gdb must not fail on "unexpected" messages written into stderr

2019-06-21 Thread STINNER Victor
STINNER Victor added the comment: For the record, examples of ignored patterns: ignore_patterns = ( 'Function "%s" not defined.' % breakpoint, 'Do you need "set solib-search-path" or ' '"set sysroot"?', # BFD: /usr/lib/debug/(...): unable

[issue37364] Use io.open_code for .pth files

2019-06-21 Thread miss-islington
miss-islington added the comment: New changeset 184f3d4f39056f6fe450d007d3b9b61d811a2a4d by Miss Islington (bot) (Steve Dower) in branch 'master': bpo-37364: Use io.open_code() to read .pth files (GH-14299) https://github.com/python/cpython/commit/184f3d4f39056f6fe450d007d3b9b61d811a2a4d --

[issue37362] test_gdb must not fail on "unexpected" messages written into stderr

2019-06-21 Thread STINNER Victor
STINNER Victor added the comment: I closed the issue. test_gdb now ignores stderr in all branches. -- ___ Python tracker ___ ___ Py

[issue37364] Use io.open_code for .pth files

2019-06-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +14124 pull_request: https://github.com/python/cpython/pull/14300 ___ Python tracker ___ __

[issue20443] __code__. co_filename should always be an absolute path

2019-06-21 Thread STINNER Victor
STINNER Victor added the comment: Effect of my PR 14053 using script.py: import sys print(f"{__file__=}") print(f"{sys.argv=}") print(f"{sys.path[0]=}") Before: $ ./python script.py __file__=script.py sys.argv=['script.py'] sys.path[0]=/home/vstinner/prog/python/master With the change: $

[issue37364] Use io.open_code for .pth files

2019-06-21 Thread miss-islington
miss-islington added the comment: New changeset 35202c763703c9c00345b4445a638211e6e37bbc by Miss Islington (bot) in branch '3.8': bpo-37364: Use io.open_code() to read .pth files (GH-14299) https://github.com/python/cpython/commit/35202c763703c9c00345b4445a638211e6e37bbc -- ___

[issue37364] Use io.open_code for .pth files

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

[issue30202] Update test.test_importlib.test_abc to test find_spec()

2019-06-21 Thread Brett Cannon
Change by Brett Cannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37363] Additional PEP578 hooks

2019-06-21 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +14125 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14301 ___ Python tracker _

[issue37369] Issue with pip in venv on Powershell in Windows

2019-06-21 Thread Brooke Storm
New submission from Brooke Storm : I am finding that, using Powershell on Windows 10 and the current version of Python 3.7.3 installed from the Microsoft Store, when I create a virtualenv via "python -m venv " and activate it in Powershell with the Activate.ps1 script that is generated, pip f

[issue37369] Issue with pip in venv on Powershell in Windows

2019-06-21 Thread Brooke Storm
Brooke Storm added the comment: I should add that, after testing a bit, it isn't actually working in cmd.exe. That is simply using the overarching python install. It's not using the virtualenv at all. The virtualenv that was created by the venv module appears to be non-functional at least

[issue37370] AF_UNIX should be supported on Windows

2019-06-21 Thread Paul Monson
New submission from Paul Monson : AF_UNIX has been supported on windows since version 1803 (build 17134) see https://devblogs.microsoft.com/commandline/af_unix-comes-to-windows/ Enabling support for AF_UNIX will enable better peer-to-peer connectivity scenarios for Azure IoT Edge. The changes

[issue37370] AF_UNIX should be supported on Windows

2019-06-21 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +14126 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14302 ___ Python tracker ___

[issue37250] C files generated by Cython set tp_print to 0: PyTypeObject.tp_print removed

2019-06-21 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19696] Merge all (non-syntactic) import-related tests into test_importlib

2019-06-21 Thread aeros167
aeros167 added the comment: > Yep, just make sure the tests still pass before and after the change. :) Sounds good, the first thing I had done before proposing the change was testing it in an IDE and using some logging to ensure that random.choose and random.choice were providing the same fu

[issue19696] Merge all (non-syntactic) import-related tests into test_importlib

2019-06-21 Thread aeros167
Change by aeros167 : -- keywords: +patch pull_requests: +14127 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/14303 ___ Python tracker

[issue37334] Add a cancel method to asyncio Queues

2019-06-21 Thread Caleb Hattingh
Caleb Hattingh added the comment: I'm interested in how this change would affect the pattern of shutting down a queue-processing task. How would one decide between whether to cancel the queue or the task? (I'm asking for real, this is not an objection to the PR). For example, looking at the

[issue37345] Add formal support for UDPLITE protococl

2019-06-21 Thread Gabe Appleton
Gabe Appleton added the comment: Okay, I removed the helper functions and added some additional documentation. Does that look okay now? -- versions: +Python 3.8 ___ Python tracker __

[issue36073] sqlite crashes with converters mutating cursor

2019-06-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32934] logging.handlers.BufferingHandler capacity is unclearly specified

2019-06-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip type: -> behavior versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.6 ___ Python tracker ___ _

<    1   2