[issue35493] multiprocessing.Pool._worker_handler(): use SIGCHLD to be notified on worker exit

2019-01-09 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +11001 stage: -> patch review ___ Python tracker ___ ___ Pytho

[issue35493] multiprocessing.Pool._worker_handler(): use SIGCHLD to be notified on worker exit

2019-01-09 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch, patch pull_requests: +11001, 11002 stage: -> patch review ___ Python tracker ___ ___

[issue35661] Store the venv prompt in pyvenv.cfg

2019-01-09 Thread Steve Dower
Steve Dower added the comment: Adding my comment from the PR review: Dealing with leading/trailing whitespace could get interesting here. All the other values can be trimmed at both ends, while this one (currently) must have one space removed from the start. Perhaps we should insert the rep

[issue35593] Register standard browser: Chrome

2019-01-09 Thread Steve Dower
Steve Dower added the comment: The patch won't work on my machine - "chrome[.exe]" is not on my PATH: >>> import shutil >>> shutil.which("chrome") >>> import webbrowser >>> webbrowser.register("chrome", None, webbrowser.BackgroundBrowser("chrome")) >>> webbrowser.get("chrome") >>> webbrowser.

[issue35593] Register standard browser: Chrome

2019-01-09 Thread Steve Dower
Steve Dower added the comment: The "8232_1.patch" patch on #8232 implements a registry-based lookup (including for Chrome) that will be far more reliable than the current process's environment. So it's not a direct duplicate, but the proposed fix will resolve this issue as well. --

[issue32710] test_asyncio: ProactorEventLoopTests sendfile tests leak references on Windows

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11004, 11005 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue32710] test_asyncio: ProactorEventLoopTests sendfile tests leak references on Windows

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11004, 11005, 11006 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue32710] test_asyncio: ProactorEventLoopTests sendfile tests leak references on Windows

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11004 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue34855] batch file variables

2019-01-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +11007 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue34855] batch file variables

2019-01-09 Thread Steve Dower
Steve Dower added the comment: New changeset 6aedfa6b9ac324587f64133c23757a66a8f355bb by Steve Dower (antektek) in branch 'master': bpo-34855: Fix EXTERNALS_DIR build variable for Windows (GH-11177) https://github.com/python/cpython/commit/6aedfa6b9ac324587f64133c23757a66a8f355bb --

[issue34855] batch file variables

2019-01-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +11007, 11008 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue34855] batch file variables

2019-01-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +11007, 11008, 11009 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue35683] Enable manylinux1 builds on Pipelines for CI testing

2019-01-09 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +11010 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue35683] Enable manylinux1 builds on Pipelines for CI testing

2019-01-09 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch, patch pull_requests: +11010, 11011 stage: -> patch review ___ Python tracker ___ ___ P

[issue35683] Enable manylinux1 builds on Pipelines for CI testing

2019-01-09 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch, patch, patch pull_requests: +11010, 11011, 11012 stage: -> patch review ___ Python tracker ___ ___

[issue35693] test_httpservers fails

2019-01-09 Thread Steve Dower
Steve Dower added the comment: The tests mostly fail in the PGO run because they are highly sensitive to the source tree layout. We've never fixed them because they aren't that important to the PGO run - failure cases help with training - and the real tests pass fine under their more control

[issue34855] batch file variables

2019-01-09 Thread miss-islington
miss-islington added the comment: New changeset 2bd5f7e91add6a20c311d46c332c4325b1e77883 by Miss Islington (bot) in branch '3.7': bpo-34855: Fix EXTERNALS_DIR build variable for Windows (GH-11177) https://github.com/python/cpython/commit/2bd5f7e91add6a20c311d46c332c4325b1e77883 -- n

[issue34855] batch file variables

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

[issue34323] False timeout log message on proactor close

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +11013 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue34323] False timeout log message on proactor close

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch, patch, patch pull_requests: +11013, 11014, 11015 stage: -> patch review ___ Python tracker ___

[issue34323] False timeout log message on proactor close

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch, patch pull_requests: +11013, 11014 stage: -> patch review ___ Python tracker ___ __

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
STINNER Victor added the comment: test_doctest starts to fail on AMD64 Windows8.1 Refleaks 2.7: https://buildbot.python.org/all/#/builders/33/builds/471 It may be related to: New changeset 02e33d9567aa4bd612f9f08053acbfd5e68480d0 by Senthil Kumaran (Sanyam Khurana) in branch '2.7': [2.7] bp

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
STINNER Victor added the comment: Yeah, I confirm that it's a regression caused by commit 02e33d9567aa4bd612f9f08053acbfd5e68480d0: "./python -m test test_doctest test_doctest" fails after this commit, but pass before this commit. -- ___ Python t

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread Sanyam Khurana
Sanyam Khurana added the comment: Hi Victor, Senthil reverted the backport commit on 2.7 branch. Is there a way I can test reference leaks in CPython? Is it using valgrind or some other tool? Can you please point me to that? I can then see if I can fix this on 2.7 Thanks! --

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
STINNER Victor added the comment: In short, this buildbot runs "./python -m test -R 3:3 test_doctest". But here the bug is just that running the test twice in a row fails. -- ___ Python tracker _

[issue35693] test_httpservers fails

2019-01-09 Thread Jorge Ramos
Jorge Ramos added the comment: Thanks! About the alternate set of training data, how (where) do I find it? and about the layouts, can you point me in the right direction as to learn about them, into what they do? or try to achieve? and how to use them? Quoting Steve Dower ( https://bugs.py

[issue35699] distutils cannot find Build Tools 2017 since 3.7.2

2019-01-09 Thread Marc Schlaich
Marc Schlaich added the comment: We are passing arguments -latest(Return only the newest version and last installed.) and "-requires", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", So this should handle the cases multiple installs and different products without compilers.

[issue35699] distutils cannot find Build Tools 2017 since 3.7.2

2019-01-09 Thread Marc Schlaich
Change by Marc Schlaich : -- keywords: +patch pull_requests: +11016 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue35699] distutils cannot find Build Tools 2017 since 3.7.2

2019-01-09 Thread Marc Schlaich
Change by Marc Schlaich : -- keywords: +patch, patch, patch pull_requests: +11016, 11017, 11018 stage: -> patch review ___ Python tracker ___ _

[issue35699] distutils cannot find Build Tools 2017 since 3.7.2

2019-01-09 Thread Marc Schlaich
Change by Marc Schlaich : -- keywords: +patch, patch pull_requests: +11016, 11017 stage: -> patch review ___ Python tracker ___ ___

[issue35702] clock_gettime: Add new identifier CLOCK_UPTIME_RAW for Darwin

2019-01-09 Thread Ricardo F
New submission from Ricardo F : Finally since the release of OSX 10.12 the equivalent from the FreeBSD and OpenBSD "CLOCK_UPTIME" is available on Darwin under the name "CLOCK_UPTIME_RAW": CLOCK_UPTIME FreeBSD [1]: Starts at zero when the kernel boots and increments monotonically in SI seconds

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
STINNER Victor added the comment: Oh. The 3.6, 3.7 and master changes broke the Refleaks buildbots... By the way, why was such bugfix merged into the 3.6 branch which is now in security-only mode? Please fix this bug ASAP, or I will revert the change. -- ___

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11020 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11020, 11021 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11020, 11021, 11022 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11023, 11024 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11023, 11024, 11025 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11023 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11026 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11026, 11027, 11028 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- versions: -Python 3.4, Python 3.5, Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue24746] doctest 'fancy diff' formats incorrectly strip trailing whitespace

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11026, 11027 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

<    1   2