[issue33166] os.cpu_count() returns wrong number of processors on specific systems

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +15584 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15949 ___ Python tracker ___

[issue38111] Error while building Python from source

2019-09-11 Thread Redcxx
New submission from Redcxx : Python failed `make` when building from source if `--enabled-share` is pass in when running `./configure`. ...(some output which seem irrevelent) /bin/ld: /home/e38160wl/Python3.7.4/local/lib/libssl.a(s3_meth.o): relocation R_X86_64_32 against `.rodata' can no

[issue37651] Change of inheritance of asyncio.CancelledError needs documentation

2019-09-11 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the report. I think this documentation part is missed in the linked PR. I will prepare a PR that adds the versionchanged directive. Perhaps we can also remove the important section or perhaps just keep the try..except example to ensure u

[issue37651] Change of inheritance of asyncio.CancelledError needs documentation

2019-09-11 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- keywords: +patch pull_requests: +15585 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15950 ___ Python tracker ___

[issue32592] Drop support of Windows Vista in Python 3.8

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15586 pull_request: https://github.com/python/cpython/pull/15951 ___ Python tracker ___ _

[issue33166] os.cpu_count() returns wrong number of processors on specific systems

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- versions: +Python 3.9 -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32592] Drop support of Windows Vista and 7 in Python 3.9

2019-09-11 Thread Steve Dower
Steve Dower added the comment: I'll at least make a start by updating the minimum API version. -- title: Drop support of Windows Vista in Python 3.8 -> Drop support of Windows Vista and 7 in Python 3.9 versions: +Python 3.9 -Python 3.8 ___ Python t

[issue34037] asyncio: BaseEventLoop.close() shutdowns the executor without waiting causing leak of dangling threads

2019-09-11 Thread Caleb Hattingh
Change by Caleb Hattingh : -- nosy: +cjrh ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-09-11 Thread Jason R. Coombs
Change by Jason R. Coombs : -- versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15587 pull_request: https://github.com/python/cpython/pull/15952 ___ Python tracker ___ __

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset b6643dcfc26859f935e4b3a6a2a203e8ef5320e2 by Jason R. Coombs (Pavel Koneski) in branch 'master': bpo-36919: make test_source_encoding.test_issue2301 implementation-independent (#13639) https://github.com/python/cpython/commit/b6643dcfc26859f935

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15588 pull_request: https://github.com/python/cpython/pull/15953 ___ Python tracker ___ __

[issue37488] Document the "gotcha" behaviors in utcnow() and utcfromtimestamp()

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset 1a53c785e62e00bad87ae19466c3a32ebcebb915 by Miss Islington (bot) (Joannah Nanjekye) in branch 'master': bpo-37488 : Document a warning for datetime.utcnow() and utcfromtimestamp() (GH-15773) https://github.com/python/cpython/commit/1a53c785e62e

[issue23460] Decimals do not obey ':g' exponential notation formatting rules

2019-09-11 Thread Julien Palard
Julien Palard added the comment: New changeset 1660a61a105bcd62e2dfa77885959a8992e9f14e by Julien Palard (Brennan D Baraban) in branch 'master': bpo-23460: Fix documentation for decimal string :g formatting (GH-11850) https://github.com/python/cpython/commit/1660a61a105bcd62e2dfa77885959a8992

[issue38108] Everything in Mock should inherit from Base

2019-09-11 Thread Lisa Roach
Lisa Roach added the comment: Also: _AsyncIterator _AwaitEvent Some of the code in AsyncMagicMixin might be able to be simplified if we inherit from MagicMixin instead, right now we might be duplicating work. In general we have to watch out for duplication/overwriting of attributes with th

[issue23460] Decimals do not obey ':g' exponential notation formatting rules

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15589 pull_request: https://github.com/python/cpython/pull/15954 ___ Python tracker ___ __

[issue37629] Imghdr doesnt recognise some jpeg

2019-09-11 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +15590 pull_request: https://github.com/python/cpython/pull/15955 ___ Python tracker ___ ___

[issue38112] Compileall improvements

2019-09-11 Thread Petr Viktorin
New submission from Petr Viktorin : Hello, In Fedora, we've long used a Bash script to compile modules to bytecode, as the compileall module was historically unsuitable. Recently, Lumír re-wrote our enhancements to compileall, and published the result as compileall2 on PyPI. We'd like to get th

[issue38091] Import deadlock detection causes deadlock

2019-09-11 Thread Eric Snow
Change by Eric Snow : -- nosy: +brett.cannon, eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue37935] Improve performance of pathlib.scandir()

2019-09-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +15591 pull_request: https://github.com/python/cpython/pull/15956 ___ Python tracker ___ ___

[issue38113] Make ast module PEP-384 compatible

2019-09-11 Thread Dino Viehland
New submission from Dino Viehland : Remove various static state from the ast module and make it PEP-384 compatible. This will help make it be more compatible w/ subinterpreters and make it re-usable by 3rd party implementations. -- assignee: dino.viehland components: Extension Module

[issue38113] Make ast module PEP-384 compatible

2019-09-11 Thread Dino Viehland
Change by Dino Viehland : -- keywords: +patch pull_requests: +15592 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15957 ___ Python tracker ___ __

[issue38113] Make ast module PEP-384 compatible

2019-09-11 Thread Dino Viehland
Change by Dino Viehland : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2019-09-11 Thread Stefan Behnel
Change by Stefan Behnel : -- versions: -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2019-09-11 Thread Stefan Behnel
Stefan Behnel added the comment: New changeset 97b817eae34b77be1ced382e15098a112f547848 by Stefan Behnel (Anjali Bansal) in branch 'master': bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861) https://github.com/python/cpython/commit/97b817eae34b77be1ced382e15098a11

[issue38110] Use fdwalk() within os.closerange() impl if available

2019-09-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: contribution from Jakub Kulík (see the PR) -- assignee: -> gregory.p.smith ___ Python tracker ___ _

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15593 pull_request: https://github.com/python/cpython/pull/15958 ___ Python tracker ___ __

[issue31163] Return destination path in Path.rename and Path.replace

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset cbd7b2a399a8ff2ed9994c380b07ef598892b6b1 by Jason R. Coombs (Miss Islington (bot)) in branch '3.8': bpo-31163: Added return values to pathlib.Path instance's rename and replace methods. (GH-13582) (GH-15944) https://github.com/python/cpython/c

[issue37651] Change of inheritance of asyncio.CancelledError needs documentation

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset 7b69069e9aa0047a0dbe8af1a67aa2b355dc68d8 by Miss Islington (bot) (Xtreak) in branch 'master': bpo-37651: Document CancelledError is now a subclass of BaseException (GH-15950) https://github.com/python/cpython/commit/7b69069e9aa0047a0dbe8af1a67aa

[issue37651] Change of inheritance of asyncio.CancelledError needs documentation

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15594 pull_request: https://github.com/python/cpython/pull/15959 ___ Python tracker ___ __

[issue37305] Add MIME type for Web App Manifest

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 35d0934040223f1360b2b343005fcc8ebbc65c1a by Jason R. Coombs (Miss Islington (bot)) in branch '3.8': bpo-37305: add MIME type for Web App Manifest (GH-14199) (#15946) https://github.com/python/cpython/commit/35d0934040223f1360b2b343005fcc8ebbc65

[issue34519] Add additional aliases for HP Roman 8

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset fef5bdc645bc5d037505e3da2965dfabb73f58eb by Jason R. Coombs (Miss Islington (bot)) in branch '3.8': bpo-34519: Add additional aliases for HP Roman 8 (GH-8956) (GH-15945) https://github.com/python/cpython/commit/fef5bdc645bc5d037505e3da2965dfabb

[issue35381] posixmodule: convert statically allocated types (DirEntryType & ScandirIteratorType) to heap-allocated types

2019-09-11 Thread Eric Snow
Eric Snow added the comment: @Jeroen, see Dino's expalantion in https://bugs.python.org/issue38075#msg351627 (relative to the "random" module). -- ___ Python tracker ___

[issue38096] Clean up the "struct sequence" / "named tuple" docs

2019-09-11 Thread Paul Ganssle
Paul Ganssle added the comment: New changeset 7117074410118086938044c7a4ef6846ec1662b2 by Paul Ganssle (Raymond Hettinger) in branch 'master': bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) https://github.com/python/cpython/commit/7117074410118086938044c7a4ef6846ec1

[issue38096] Clean up the "struct sequence" / "named tuple" docs

2019-09-11 Thread Paul Ganssle
Change by Paul Ganssle : -- resolution: -> fixed stage: patch review -> backport needed status: open -> pending ___ Python tracker ___

[issue38111] Error while building Python from source

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: Could you add some more details about what you're doing here, such as OS, OS version, compiler and compiler version, etc.? We routinely test `--enable-shared` builds on both Linux and FreeBSD in our post-merge buildbot setup, and have not had any issues with

[issue34519] Add additional aliases for HP Roman 8

2019-09-11 Thread Jason R. Coombs
Change by Jason R. Coombs : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue38107] Replace direct future and task contructor calls with factories in asyncio tests

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset b18b19809d24182e9837b27b1c0af65458dff3ba by Miss Islington (bot) in branch '3.8': bpo-38107: Replace direct future and task contructor calls with factories in asyncio tests (GH-15928) https://github.com/python/cpython/commit/b18b19809d24182e983

[issue37305] Add MIME type for Web App Manifest

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: Thanks for the contrib. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue31163] Return destination path in Path.rename and Path.replace

2019-09-11 Thread Jason R. Coombs
Change by Jason R. Coombs : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 ___ Python tracker ___ ___

[issue38096] Clean up the "struct sequence" / "named tuple" docs

2019-09-11 Thread Paul Ganssle
Change by Paul Ganssle : -- pull_requests: +15595 status: pending -> open pull_request: https://github.com/python/cpython/pull/15961 ___ Python tracker ___

[issue38114] Exclude pip.ini from Nuget package

2019-09-11 Thread Steve Dower
New submission from Steve Dower : The pip.ini intended for store packages is being included in the nuget package. We should not do that. -- assignee: steve.dower components: Windows keywords: 3.8regression messages: 351900 nosy: paul.moore, steve.dower, tim.golden, zach.ware priority:

[issue38096] Clean up the "struct sequence" / "named tuple" docs

2019-09-11 Thread Paul Ganssle
Change by Paul Ganssle : -- pull_requests: +15596 stage: backport needed -> patch review pull_request: https://github.com/python/cpython/pull/15962 ___ Python tracker ___ _

[issue37935] Improve performance of pathlib.scandir()

2019-09-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, I am the author of the code that uses os.scandir() in os.walk(), os.fwalk(), glob.iglob() and Path.glob() (see issue23605, issue25996, issue25596, issue26032). And it was always in mind to not keep many file descriptors open when traverse directories

[issue38114] Exclude pip.ini from Nuget package

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +15597 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15964 ___ Python tracker ___

[issue38115] Invalid bytecode offsets in co_lnotab

2019-09-11 Thread Thomas Wouters
New submission from Thomas Wouters : The peephole optimizer in Python 2.7 and later (and probably a *lot* earlier) has a bug where if the optimizer entirely optimizes away the last line(s) of a function, the lnotab references invalid bytecode offsets: >>> def f(cond1, cond2): ... while 1:

[issue37972] unittest.mock.call does not chain __getitem__ to another _Call object

2019-09-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 72c359912d36705a94fca8b63d80451905a14ae4 by Michael Foord (blhsing) in branch 'master': bpo-37972: unittest.mock._Call now passes on __getitem__ to the __getattr__ chaining so that call() can be subscriptable (GH-15565) https://github.com/python

[issue37972] unittest.mock.call does not chain __getitem__ to another _Call object

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15598 pull_request: https://github.com/python/cpython/pull/15965 ___ Python tracker ___ __

[issue37879] Segfaults in C heap type subclasses

2019-09-11 Thread Petr Viktorin
Change by Petr Viktorin : -- pull_requests: +15599 pull_request: https://github.com/python/cpython/pull/15966 ___ Python tracker ___ ___

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset c2119399488a297275db7f0590cff957b6ce8a2e by Jason R. Coombs (Miss Islington (bot)) in branch '3.7': bpo-36919: make test_source_encoding.test_issue2301 implementation-independent (GH-13639) (GH-15953) https://github.com/python/cpython/commit/c

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 42edfcfd129c7ac4842b9e0cd453bbe3ff006669 by Jason R. Coombs (Miss Islington (bot)) in branch '3.8': bpo-36919: make test_source_encoding.test_issue2301 implementation-independent (GH-13639) (GH-15952) https://github.com/python/cpython/commit/4

[issue35224] PEP 572: Assignment Expressions

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15600 pull_request: https://github.com/python/cpython/pull/15967 ___ Python tracker ___ __

[issue35224] PEP 572: Assignment Expressions

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset 6357c95716d89ac1f80587fbc4133df8d2e8396c by Miss Islington (bot) (Emily Morehouse) in branch 'master': bpo-35224: Additional documentation for Assignment Expressions (GH-15935) https://github.com/python/cpython/commit/6357c95716d89ac1f80587fbc41

[issue38115] Invalid bytecode offsets in co_lnotab

2019-09-11 Thread Thomas Wouters
Thomas Wouters added the comment: There's also a bug where the optimizer may bail out on optimizing a code object *after* updating the lnotab (the last 'goto exitUnchanged' in Python/peephole.c). That bug has existed since Python 3.6, but it's not clear to me how much this actually affects.

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-09-11 Thread Jason R. Coombs
Change by Jason R. Coombs : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue37252] devpoll test failures on Solaris

2019-09-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset b4808c1265722b8a03ab436e37c7c337074acb15 by Stéphane Wirtel (Miss Islington (bot)) in branch '3.8': closes bpo-37252: Fix devpoll tests. (GH-14017) (GH-15948) https://github.com/python/cpython/commit/b4808c1265722b8a03ab436e37c7c337074acb15 --

[issue23460] Decimals do not obey ':g' exponential notation formatting rules

2019-09-11 Thread Julien Palard
Julien Palard added the comment: New changeset 629f1f87e9b0bfd9f1dc3d02f966decde5c65201 by Julien Palard (Miss Islington (bot)) in branch '3.8': bpo-23460: Fix documentation for decimal string :g formatting (GH-11850) (GH-15954) https://github.com/python/cpython/commit/629f1f87e9b0bfd9f1dc3d

[issue23460] Decimals do not obey ':g' exponential notation formatting rules

2019-09-11 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36634] venv: activate.bat fails for venv with parentheses in PATH

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset 574b324bdc9a126b5a4488c3613f11ad2555415e by Zachary Ware (Steve Dower) in branch 'master': bpo-36634: Fixes activate.bat when existing values contain double quotes (GH-15924) https://github.com/python/cpython/commit/574b324bdc9a126b5a4488c3613f11

[issue38111] Error while building Python from source

2019-09-11 Thread Redcxx
Redcxx added the comment: Sorry for that, Heres are my os infomation: LSB Version: :core-4.1-amd64:core-4.1-ia32:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-ia32:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-ia32:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:print

[issue36634] venv: activate.bat fails for venv with parentheses in PATH

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15602 pull_request: https://github.com/python/cpython/pull/15969 ___ Python tracker ___ __

[issue36634] venv: activate.bat fails for venv with parentheses in PATH

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15601 pull_request: https://github.com/python/cpython/pull/15968 ___ Python tracker ___ __

[issue37424] subprocess.run timeout does not function if shell=True and capture_output=True

2019-09-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: Thanks. I believe this issue is fixed but you've identified follow-on issues. lets follow up on those in their own bugs. -- resolution: -> fixed stage: patch review -> commit review status: open -> closed ___

[issue38111] Error while building Python from source

2019-09-11 Thread Redcxx
Change by Redcxx : -- type: crash -> compile error ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue37091] subprocess - uncaught PermissionError in send_signal can cause hang

2019-09-11 Thread Gregory P. Smith
Change by Gregory P. Smith : -- priority: normal -> low ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2019-09-11 Thread Stefan Behnel
Stefan Behnel added the comment: New changeset 6cf0ba8a632b1c0bd3576ed33c971ca3778000de by Stefan Behnel (Miss Islington (bot)) in branch '3.8': bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861) (GH-15958) https://github.com/python/cpython/commit/6cf0ba8a632b1c0b

[issue38116] Make select module PEP-384 compatible

2019-09-11 Thread Dino Viehland
New submission from Dino Viehland : Remove static PyTypeObject* definitions and move static data to _selectstate to help improve compatibility w/ subinterpreters and re-use by alternate implementations. -- assignee: dino.viehland components: Extension Modules messages: 351913 nosy: di

[issue38115] Invalid bytecode offsets in co_lnotab

2019-09-11 Thread Thomas Wouters
Change by Thomas Wouters : -- pull_requests: +15603 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15970 ___ Python tracker ___ __

[issue38116] Make select module PEP-384 compatible

2019-09-11 Thread Dino Viehland
Change by Dino Viehland : -- keywords: +patch pull_requests: +15604 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15971 ___ Python tracker ___ __

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2019-09-11 Thread Stefan Behnel
Change by Stefan Behnel : -- versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33187] Document ElementInclude (XInclude) support in ElementTree

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15605 pull_request: https://github.com/python/cpython/pull/15972 ___ Python tracker ___ __

[issue38111] Error while building Python from source

2019-09-11 Thread Redcxx
Redcxx added the comment: Sorry I mistype the changes I made in Modules/Setup.dist, this is the correct one: # Socket module helper for SSL support; you must comment out the other # socket line above, and possibly edit the SSL variable: SSL=/home/e38160wl/Python3.7.4/local/openssl ssl_path=/ho

[issue38113] Remove statics from ast.c

2019-09-11 Thread Dino Viehland
Dino Viehland added the comment: Remove statics to make more compatible with subinterpreters. -- components: +Interpreter Core -Extension Modules title: Make ast module PEP-384 compatible -> Remove statics from ast.c ___ Python tracker

[issue38106] Race in PyThread_release_lock - can lead to memory corruption and deadlock

2019-09-11 Thread Armin Rigo
Armin Rigo added the comment: I may be wrong, but I believe that the bug requires using the C API (not just pure Python code). This is because Python-level lock objects have their own lifetime, and should never be freed while another thread is in PyThread_release_lock() with them. Neverthe

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread Thomas Wouters
Thomas Wouters added the comment: New changeset 5209e586b7cac9a43b2c44349a26b1b0af06ead3 by T. Wouters (Daniel Abrahamsson) in branch 'master': bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15330) https://github.com/python/cpython/commit/5209e586b7cac9a43b2c44349a2

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15607 pull_request: https://github.com/python/cpython/pull/15974 ___ Python tracker ___ __

[issue36634] venv: activate.bat fails for venv with parentheses in PATH

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

[issue37885] venv: Don't produce unbound variable warning on deactivate

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15606 pull_request: https://github.com/python/cpython/pull/15973 ___ Python tracker ___ __

[issue38111] Error while building Python from source

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: I believe the better option would be to pass `CPPFLAGS=-I/home/e38160wl/local/openssl/include LDFLAGS=-L/home/e38160wl/local/openssl/lib` instead of editing Setup[.dist]. Could you give that a try? Otherwise, this may be an issue with the way OpenSSL was bui

[issue38113] Remove statics from ast.c

2019-09-11 Thread Dino Viehland
Change by Dino Viehland : -- pull_requests: +15608 pull_request: https://github.com/python/cpython/pull/15975 ___ Python tracker ___ ___

[issue36998] distutils sdist command fails to create MANIFEST if any filenames are undecodable

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: Thanks all for investigating and discussing this issue. I'm reviewing the PR, and I can't help but wonder, does this same issue exist when building with setuptools? Do you care about older Python versions? Would addressing these issues in setuptools address

[issue36260] [security] CVE-2019-9674: Zip Bomb vulnerability

2019-09-11 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset 3ba51d587f6897a45301ce9126300c14fcd4eba2 by Jason R. Coombs (JunWei Song) in branch 'master': bpo-36260: Add pitfalls to zipfile module documentation (#13378) https://github.com/python/cpython/commit/3ba51d587f6897a45301ce9126300c14fcd4eba2 -

[issue36260] [security] CVE-2019-9674: Zip Bomb vulnerability

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15609 pull_request: https://github.com/python/cpython/pull/15976 ___ Python tracker ___ __

[issue36260] [security] CVE-2019-9674: Zip Bomb vulnerability

2019-09-11 Thread Jason R. Coombs
Change by Jason R. Coombs : -- nosy: -jaraco resolution: remind -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35592] Not able to use Python 3.7.2 due to SSL issue

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue36182] Path.write_text() docs do not include the case that a file exists

2019-09-11 Thread Julien Palard
Julien Palard added the comment: New changeset af636f4f91b8289b6dad95cb84123f6e22fd7f4f by Julien Palard (Lysandros Nikolaou) in branch 'master': bpo-36182: Update pathlib.Path.write_text() docs (GH-12161) https://github.com/python/cpython/commit/af636f4f91b8289b6dad95cb84123f6e22fd7f4f ---

[issue35795] test_pkgutil test_zipapp fail in AMD64 Windows7 SP1 3.x and AMD64 Windows7 SP1 3.7 buildbots

2019-09-11 Thread Steve Dower
Steve Dower added the comment: Have we seen this recently? Should we just close this? -- ___ Python tracker ___ ___ Python-bugs-lis

[issue36182] Path.write_text() docs do not include the case that a file exists

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15610 pull_request: https://github.com/python/cpython/pull/15977 ___ Python tracker ___ __

[issue37651] Change of inheritance of asyncio.CancelledError needs documentation

2019-09-11 Thread Andrew Svetlov
Andrew Svetlov added the comment: Done, thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37651] Change of inheritance of asyncio.CancelledError needs documentation

2019-09-11 Thread miss-islington
miss-islington added the comment: New changeset e784bb7c6b2a52e80d7c03cb85e5faab11a1ccbd by Miss Islington (bot) in branch '3.8': bpo-37651: Document CancelledError is now a subclass of BaseException (GH-15950) https://github.com/python/cpython/commit/e784bb7c6b2a52e80d7c03cb85e5faab11a1ccbd

[issue35253] Linker warning LNK4281

2019-09-11 Thread Steve Dower
Steve Dower added the comment: I don't remember exactly when, but this is fixed. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue38110] Use fdwalk() within os.closerange() impl if available

2019-09-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: """On Solaris, we are patching (for many years now) `posix_closerange` function to use `fdwalk` to close file descriptors instead of a for loop. While for a long time only Solaris had `fdwalk`, but if I am not mistaken, some other OSes implement it today a

[issue38110] Use fdwalk() within os.closerange() impl if available

2019-09-11 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset e20134f889a0cfcc37a46979f31a1c98b800de07 by Gregory P. Smith (Jakub Kulík) in branch 'master': bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224) https://github.com/python/cpython/commit/e20134f889a0cfcc37a46979f31a1c98b800de0

[issue38110] Use fdwalk() within os.closerange() impl if available

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15611 pull_request: https://github.com/python/cpython/pull/15978 ___ Python tracker ___ __

[issue35224] PEP 572: Assignment Expressions

2019-09-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset be2aa58fdc29cf13aabff6d6712e7853e94e88f8 by Stéphane Wirtel (Miss Islington (bot)) in branch '3.8': bpo-35224: Additional documentation for Assignment Expressions (GH-15935) (GH-15967) https://github.com/python/cpython/commit/be2aa58fdc29cf13aa

[issue38081] Different behavior of os.path.realpath('nul') in 3.7 and 3.8

2019-09-11 Thread Eryk Sun
Eryk Sun added the comment: We should allow ERROR_INVALID_FUNCTION (1), ERROR_INVALID_PARAMETER (87), and ERROR_NOT_SUPPORTED (50) for readlink and _getfinalpathname, which can indicate a device that does not implement or is not mounted by a file system. We should also allow ERROR_BAD_NET_NA

[issue33166] os.cpu_count() returns wrong number of processors on specific systems

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset aa929273caca2f4e24e3aa9e790272fd4458ad35 by Zachary Ware (Steve Dower) in branch 'master': bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949) https://github.com/python/cpython/commit/aa929273caca2f4e24e3aa9e790272fd4458ad

[issue33166] os.cpu_count() returns wrong number of processors on specific systems

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15612 pull_request: https://github.com/python/cpython/pull/15979 ___ Python tracker ___ __

[issue38114] Exclude pip.ini from Nuget package

2019-09-11 Thread Zachary Ware
Zachary Ware added the comment: New changeset 19f6940cd7fb91246b88e1fbdbce97a02e7f3fa1 by Zachary Ware (Steve Dower) in branch 'master': bpo-38114: Do not include pip.ini in Nuget package (GH-15964) https://github.com/python/cpython/commit/19f6940cd7fb91246b88e1fbdbce97a02e7f3fa1 --

[issue38114] Exclude pip.ini from Nuget package

2019-09-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +15613 pull_request: https://github.com/python/cpython/pull/15980 ___ Python tracker ___ __

<    1   2   3   4   5   >