[issue33669] str.format should raise exception when placeholder number doesn't match argument number

2018-05-28 Thread Eric V. Smith
Eric V. Smith added the comment: This was a deliberate design choice, and as Serhiy notes, at least partially driven by translations. It seems to me it would be a job for a linter to point out a problem, if the string is a constant. -- nosy: +eric.smith _

[issue33654] asyncio: transports don't support switching between Protocol and BufferedProtocol

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset dbf102271fcc316f353c7e0a283811b661d128f2 by Yury Selivanov in branch 'master': bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130) https://github.com/python/cpython/commit/dbf102271fcc316f353c7e0a283811b661d128f2 --

[issue33654] asyncio: transports don't support switching between Protocol and BufferedProtocol

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6799 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue32458] test_asyncio: test_start_tls_server_1() fails randomly

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: https://github.com/python/cpython/pull/7130 is in. It includes many tests for TLS tests as well as bugfixes to asyncio code. Hopefully this all will make tests more stable. -- ___ Python tracker

[issue33505] Optimize asyncio.ensure_future by reordering if conditions

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset f8fdb368e3d8d048bffc248fbe1023651c276671 by Yury Selivanov (Miss Islington (bot)) in branch '3.7': bpo-33505: Optimize asyncio.ensure_future by reordering if conditions (GH-6836) (#7162) https://github.com/python/cpython/commit/f8fdb368e3d8d048

[issue33654] asyncio: transports don't support switching between Protocol and BufferedProtocol

2018-05-28 Thread miss-islington
miss-islington added the comment: New changeset bc3a002e7d5a921e233a5ee0b0f5610c6510b647 by Miss Islington (bot) in branch '3.7': bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130) https://github.com/python/cpython/commit/bc3a002e7d5a921e233a5ee0b0f5610c6510b647

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +6800 stage: needs patch -> patch review ___ Python tracker ___ ___ Pytho

[issue33669] str.format should raise exception when placeholder number doesn't match argument number

2018-05-28 Thread Eric V. Smith
Eric V. Smith added the comment: I still think it's a job for a linter, even if the compiler optimizes away the call to .format(). -- ___ Python tracker ___ _

[issue32762] Choose protocol implementation on transport.set_protocol()

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Closing in favour of https://bugs.python.org/issue33654 -- resolution: -> duplicate stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker ___

[issue30945] loop.create_server does not detect if the interface is IPv6 enabled

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Does anybody wants to make a PR to fix this? -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue32832] doctest should support custom ps1/ps2 prompts

2018-05-28 Thread Sergey B Kirpichev
Sergey B Kirpichev added the comment: > They support _more than one_ set of PS1/PS2 conventions. I saw this, not sure if that's required. IMHO, same effect should be possible by running doctest several times with different conventions. > Who would it help? In principle, any project, that u

[issue33654] asyncio: transports don't support switching between Protocol and BufferedProtocol

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker ___ ___

[issue33505] Optimize asyncio.ensure_future by reordering if conditions

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue32458] test_asyncio: test_start_tls_server_1() fails randomly

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- pull_requests: +6801 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33667] Mock calls on mutable objects

2018-05-28 Thread Pawel
Pawel added the comment: Ok, fair enough. Thank You for explanation. I was just surprised with this behaviour. On the other hand, I don't like mutable objects and I'm trying to avoid them. -- ___ Python tracker

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread Steve Dower
Steve Dower added the comment: New changeset e97ba4c690613d734843db218aeedce2f0e5937f by Steve Dower in branch 'master': bpo-33614: Ensures module definition files for the stable ABI on Windows are correctly regenerated. (GH-7165) https://github.com/python/cpython/commit/e97ba4c690613d734843

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6802 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6803 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread Ned Deily
Ned Deily added the comment: Steve - PR 7165 appears to have caused a buildbot failure: http://buildbot.python.org/all/#/builders/12/builds/910 -- ___ Python tracker ___

[issue33671] Efficient zero-copy for shutil.copy* functions (Linux, OSX and Win)

2018-05-28 Thread Stefan Behnel
Stefan Behnel added the comment: Nice, I really like this. Apart from the usual bit of minor style issues, I couldn't see anything inherently wrong with the PR, but I'll leave the detailed reviews to those who'd have to maintain the code in the future. :) -- nosy: +scoder _

[issue32410] Implement loop.sock_sendfile method

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- pull_requests: +6807 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue12486] tokenize module should have a unicode API

2018-05-28 Thread Thomas Kluyver
Thomas Kluyver added the comment: The tests on PR #6957 are passing now, if anyone has time to have a look. :-) -- ___ Python tracker ___ _

[issue32523] inconsistent spacing in changelog.html

2018-05-28 Thread Ned Deily
Ned Deily added the comment: @mdk, Would you have time to take a look at this? Thanks! -- nosy: +mdk versions: +Python 3.8 ___ Python tracker ___

[issue33672] Fix Task.__repr__ crash when trying to format Cython's bogus coroutines

2018-05-28 Thread Yury Selivanov
New submission from Yury Selivanov : New changeset 989b9e0e6d7dd2fa911f9bfd4744e7f3a82d6006 by Yury Selivanov in branch 'master': bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161) https://github.com/python/cpython/commit/989b9e0e6d7dd2fa911f9bfd4744e7f3a82d6006

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread Steve Dower
Steve Dower added the comment: Thanks! I guess we were getting lucky in the past, as that error could have shown up for any number of reasons... -- ___ Python tracker ___ ___

[issue33672] Fix Task.__repr__ crash when trying to format Cython's bogus coroutines

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6808 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread STINNER Victor
New submission from STINNER Victor : While debugging bpo-32458 (functional test on START TLS), I found a race condition in SSLProtocol of asyncio/sslproto.py. Sometimes, _sslpipe.feed_ssldata() is called before _sslpipe.shutdown(). * SSLProtocol.connection_made() -> SSLProtocol._start_handsha

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: Workaround: diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index 2bfa45dd15..4a5dbb38a1 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -592,7 +592,7 @@ class SSLProtocol(protocols.Protocol): # (b'', 1) is a speci

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread miss-islington
miss-islington added the comment: New changeset c489a767af46f33e73d96a5746e46a7365814db2 by Miss Islington (bot) in branch '3.6': bpo-33614: Ensures module definition files for the stable ABI on Windows are correctly regenerated. (GH-7165) https://github.com/python/cpython/commit/c489a767af4

[issue31647] asyncio: StreamWriter write_eof() after close raises mysterious AttributeError

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 7e8819a589c7630db9d440826143ad0a1daf948e by Yury Selivanov (Miss Islington (bot)) in branch '3.6': bpo-31647: Fix write_eof() after close() for SelectorSocketTransport (GH-7149) (#7154) https://github.com/python/cpython/commit/7e8819a589c7630db

[issue32458] test_asyncio: test_start_tls_server_1() fails randomly

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 8267ea2e84d355f00654dec3ad782fc7b1f680f1 by Yury Selivanov in branch 'master': bpo-32458: Further tune start_tls tests (#7166) https://github.com/python/cpython/commit/8267ea2e84d355f00654dec3ad782fc7b1f680f1 -- __

[issue32610] asyncio.all_tasks() should return only non-finished tasks.

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +6809 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue32458] test_asyncio: test_start_tls_server_1() fails randomly

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: While Yury seems unable to reproduce the bug, it's easy for me to reproduce it on Linux. After 2 hours of debugging, I found the root issue: a race condition not in the test, but in asyncio itself! => bpo-33674 "asyncio: race condition in SSLProtocol".

[issue32458] test_asyncio: test_start_tls_server_1() fails randomly

2018-05-28 Thread miss-islington
miss-islington added the comment: New changeset 4b828467a3fcec0c1947e8326f67b8db12a4f303 by Miss Islington (bot) in branch '3.7': bpo-32458: Further tune start_tls tests (GH-7166) https://github.com/python/cpython/commit/4b828467a3fcec0c1947e8326f67b8db12a4f303 -- nosy: +miss-isling

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: loop.start_tls() method is new in Python 3.7. If possible, I would prefer to not see it with a builtin race condition, since such race condition is really hard to debug :-( So I raise the priority to release blocker. Sorry again Ned! -- nosy: +ned.de

[issue32610] asyncio.all_tasks() should return only non-finished tasks.

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: After an off-list discussion I think I was able to convince Andrew to change the behaviour of the newly added asyncio.all_tasks() to return only pending tasks. The logic behind this is that: 1. there's no good known use case for returning a list of all non-

[issue33667] Mock calls on mutable objects

2018-05-28 Thread R. David Murray
Change by R. David Murray : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Python unittest.mock.mock_calls stores references to arguments instead of their values ___ Python tracker

[issue32038] Add API to intercept socket.close()

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Closing this one. Using private socket.socket APIs works fine for uvloop/asyncio. -- resolution: -> rejected stage: -> resolved status: open -> closed type: -> enhancement ___ Python tracker

[issue33671] Efficient zero-copy for shutil.copy* functions (Linux, OSX and Win)

2018-05-28 Thread Stefan Behnel
Stefan Behnel added the comment: Regarding the benchmarks, just to be sure, did you try reversing the run order to make sure you don't get unfair caching effects for the later runs? -- ___ Python tracker __

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +6810 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue32672] .then execution of actions following a future's completion

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +6804 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread miss-islington
miss-islington added the comment: New changeset 3757939e9c00a36f939d774ec5c79e5d6b9a77bb by Miss Islington (bot) in branch '3.7': bpo-33614: Ensures module definition files for the stable ABI on Windows are correctly regenerated. (GH-7165) https://github.com/python/cpython/commit/3757939e9c0

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: Yury Selivanov told me that usually it's safer to add call_soon(), than to remove call_soon(). But adding many call_soon() can make asyncio SSL slower. SSLProtocol doesn't seem to like call_soon(), it's only used at: * connection_lost(): call_soon(self._app_

[issue32458] test_asyncio: test_start_tls_server_1() fails randomly

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6805 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: The fix is correct and the bug is now obvious: data_received() occur pretty much any time after connection_made() call; if call_soon() is used in connection_made(), data_received() may find the protocol in an incorrect state. Kudos Victor for debugging this.

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: And I agree, this should make it to 3.7.0 -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +6806 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue32610] asyncio.all_tasks() should return only non-finished tasks.

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6816 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue33672] Fix Task.__repr__ crash when trying to format Cython's bogus coroutines

2018-05-28 Thread Ned Deily
Ned Deily added the comment: bug fix, go for it. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue25228] Regression in http.cookies parsing with brackets and quotes

2018-05-28 Thread Sam Park
Change by Sam Park : -- nosy: +spark ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/

[issue32410] Implement loop.sock_sendfile method

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 7165754b6b5f3b7c07050d921fa1c58bba5f0ff1 by Yury Selivanov in branch 'master': bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) https://github.com/python/cpython/commit/7165754b6b5f3b7c07050d921fa1c58bba5f0ff1 -

[issue29392] msvcrt.locking crashes python

2018-05-28 Thread Steve Dower
Change by Steve Dower : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue25228] Regression in http.cookies parsing with brackets and quotes

2018-05-28 Thread Sam Park
Sam Park added the comment: I'm seeing a similar issue with curly brackets. from Cookie import BaseCookie cookie = BaseCookie('asd={"asd"}; my-real-cookie=stuff i care about; blah=blah') assert 'my-real-cookie' in cookie # False -- ___ Python trac

[issue33672] Fix Task.__repr__ crash when trying to format Cython's bogus coroutines

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 075c662086859f864aa1179f57367aa470ee6335 by Yury Selivanov (Miss Islington (bot)) in branch '3.7': bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161) (GH-7173) https://github.com/python/cpython/commit/075c662086859f864a

[issue33671] Efficient zero-copy for shutil.copy* functions (Linux, OSX and Win)

2018-05-28 Thread Марк Коренберг
Марк Коренберг added the comment: http://man7.org/linux/man-pages/man2/ioctl_ficlonerange.2.html That possibly should be used under Linux in order to really acheive zero-copying. Just like modern cp command. -- nosy: +socketpair ___ Python tracker

[issue32410] Implement loop.sock_sendfile method

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6817 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile

2018-05-28 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : It seems that since c489a767af46f33e73d96a5746e46a7365814db2 the AMD64 Windows10 buildbot for Python3.6 fails to compile. Error log: Using "C:\Program Files (x86)\MSBuild\14.0\bin\\msbuild.exe" (found in the registry) Cannot locate MSBuild.exe on PA

[issue32610] asyncio.all_tasks() should return only non-finished tasks.

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Ned, this one would also be nice to have in 3.7.0. The patch alters the behaviour of new 3.7 api. -- priority: normal -> release blocker ___ Python tracker ___

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile

2018-05-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: http://buildbot.python.org/all/#/builders/31/builds/321 -- ___ Python tracker ___ ___ Pyth

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread Steve Dower
Steve Dower added the comment: I *believe* this change will prevent the issue in the future, so marking this as fixed. But I wasn't able to reproduce it locally, so there may be something funny about either the file system or the version of MSBuild on the buildbots that caused it to not rebu

[issue31647] asyncio: StreamWriter write_eof() after close raises mysterious AttributeError

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Would be great to have this change in 3.7.0 (it's safe to merge it IMO) -- nosy: +larry, ned.deily priority: normal -> release blocker ___ Python tracker ___

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile

2018-05-28 Thread Ned Deily
Ned Deily added the comment: If it's a problem with a Windows build, you should add the Windows component so the Windows team is nosied. But, in this case, I think Steve has already fixed this. -- components: +Windows nosy: +ned.deily, paul.moore, steve.dower, tim.golden, zach.ware

[issue32380] functools.singledispatch interacts poorly with methods

2018-05-28 Thread Ethan Smith
Ethan Smith added the comment: This was fixed, so I think it can be closed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue23749] asyncio missing wrap_socket (starttls)

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: I found a race condition in START TLS: bpo-33674. I'm fixing it (I'm just waiting to merge my PR which has already been approved). -- ___ Python tracker ___

[issue32457] Windows Python cannot handle an early PATH entry containing ".." and python.exe

2018-05-28 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue33469] RuntimeError after closing loop that used run_in_executor

2018-05-28 Thread miss-islington
miss-islington added the comment: New changeset 8d8b86116fae91570c26fa48974b54986fbd1b72 by Miss Islington (bot) in branch '3.7': bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171) https://github.com/python/cpython/commit/8d8b86116fae91570c26fa48974b54986fbd1b72

[issue33642] IDLE: Use variable number of lines in CodeContext

2018-05-28 Thread Cheryl Sabella
Cheryl Sabella added the comment: I pushed a commit for these three items. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue33672] Fix Task.__repr__ crash when trying to format Cython's bogus coroutines

2018-05-28 Thread Yury Selivanov
Change by Yury Selivanov : -- pull_requests: +6815 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33353] test_asyncio: test_sock_sendfile_mix_with_regular_send() hangs on FreeBSD

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: Hum, the test still fails on AMD64 FreeBSD CURRENT Debug 3.x :-( http://buildbot.python.org/all/#/builders/60/builds/77 test_sock_client_ops (test.test_asyncio.test_events.PollEventLoopTests) ... ok Timeout (0:15:00)! Thread 0x00080139d000 (most recent ca

[issue33623] Fix possible SIGSGV when asyncio.Future is created in __del__

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Would be great to merge this in 3.7.0. The change is super safe to merge. -- nosy: +ned.deily priority: normal -> release blocker ___ Python tracker ___

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile

2018-05-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Could http://buildbot.python.org/all/#/builders/90/builds/350 be related to this? -- ___ Python tracker ___ _

[issue32610] asyncio.all_tasks() should return only non-finished tasks.

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 416c1ebd9896b394790dcb4f9f035b1a44ebe9ff by Yury Selivanov in branch 'master': bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174) https://github.com/python/cpython/commit/416c1ebd9896b394790dcb4f9f035b1a44ebe9ff ---

[issue30317] test_timeout() of test_multiprocessing_spawn.WithManagerTestBarrier fails randomly on x86 Windows7 3.x buildbot

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: Recent failure on x86 Windows7 3.x: http://buildbot.python.org/all/#/builders/58/builds/914 == FAIL: test_timeout (test.test_multiprocessing_spawn.WithManagerTestQueue) --

[issue33353] test_asyncio: test_sock_sendfile_mix_with_regular_send() hangs on FreeBSD

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Andrew, I'm out of capacity here, could you please take a look when you have time? -- ___ Python tracker ___ ___

[issue33676] test_multiprocessing_fork: dangling threads warning

2018-05-28 Thread STINNER Victor
New submission from STINNER Victor : AMD64 FreeBSD 10.x Shared 3.7: http://buildbot.python.org/all/#/builders/124/builds/327 == CPU count: 2 Run tests in parallel using 4 child processes (...) 0:02:09 load avg: 3.70 [138/415/1] test_multiprocessing_fork failed (env changed) (108 sec) -- runni

[issue30317] test_timeout() of test_multiprocessing_spawn.WithManagerTestBarrier fails randomly on x86 Windows7 3.x buildbot

2018-05-28 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue33672] Fix Task.__repr__ crash when trying to format Cython's bogus coroutines

2018-05-28 Thread Yury Selivanov
Yury Selivanov added the comment: Ned, this one would be nice to have in 3.7.0. -- nosy: +ned.deily priority: normal -> release blocker ___ Python tracker ___

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: It seems like a regression of bpo-33614. -- nosy: +vstinner ___ Python tracker ___ ___ Python-bug

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: It seems like the commit c489a767af46f33e73d96a5746e46a7365814db2 broke the AMD64 Windows10 buildbot: bpo-33675. I reopen this issue. -- resolution: fixed -> status: closed -> open ___ Python tracker

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: Similar failure on x86 Windows7 3.6: http://buildbot.python.org/all/#builders/90/builds/350 "Cannot locate MSBuild.exe on PATH or as MSBUILD variable" -- ___ Python tracker

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile: Cannot locate MSBuild.exe on PATH or as MSBUILD variable

2018-05-28 Thread STINNER Victor
Change by STINNER Victor : -- title: Buildbot AMD64 Windows10 3.6 fails to compile -> Buildbot AMD64 Windows10 3.6 fails to compile: Cannot locate MSBuild.exe on PATH or as MSBUILD variable ___ Python tracker _

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile: Cannot locate MSBuild.exe on PATH or as MSBUILD variable

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: AMD64 Windows10 3.7: http://buildbot.python.org/all/#/builders/121/builds/256 "Cannot locate MSBuild.exe on PATH or as MSBUILD variable" -- ___ Python tracker __

[issue33353] test_asyncio: test_sock_sendfile_mix_with_regular_send() hangs on FreeBSD

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: Similar failure on AMD64 FreeBSD CURRENT Non-Debug 3.7: http://buildbot.python.org/all/#/builders/112/builds/62 Timeout (0:15:00)! Thread 0x000801324000 (most recent call first): File "/usr/home/buildbot/python/3.7.koobs-freebsd-current.nondebug/build/

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread Steve Dower
Steve Dower added the comment: Already fixed in GH-7169, GH-7176 and GH-7177 (which I apparently typo'd "bpo" in the commit message, so they didn't link up properly here). -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue33353] test_asyncio: test_sock_sendfile_mix_with_regular_send() hangs on FreeBSD

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: > http://buildbot.python.org/all/#/builders/112/builds/62 On the previous build, test_asyncio only took 3 min 54 sec: far from the 15 min timeout limit :-( -- ___ Python tracker

[issue33675] Buildbot AMD64 Windows10 3.6 fails to compile: Cannot locate MSBuild.exe on PATH or as MSBUILD variable

2018-05-28 Thread Steve Dower
Steve Dower added the comment: Already fixed in GH-7169, GH-7176 and GH-7177 -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x ___ Python tracker

[issue33673] Install python-docs-theme even if Sphinx is already installed

2018-05-28 Thread Steve Dower
Change by Steve Dower : -- components: +Windows -Demos and Tools nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker ___ __

[issue33673] Install python-docs-theme even if Sphinx is already installed

2018-05-28 Thread Steve Dower
Steve Dower added the comment: New changeset 3d3e66c2daebd8e6b18944eac7546168c0006c78 by Steve Dower (Andrés Delfino) in branch 'master': bpo-33673: Install python-docs-theme even if Sphinx is already installed (GH-7163) https://github.com/python/cpython/commit/3d3e66c2daebd8e6b18944eac754616

[issue33673] Install python-docs-theme even if Sphinx is already installed

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6818 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33673] Install python-docs-theme even if Sphinx is already installed

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6819 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33001] Buffer overflow vulnerability in os.symlink on Windows (CVE-2018-1000117)

2018-05-28 Thread Steve Dower
Steve Dower added the comment: Thanks Larry for merging the backports! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue33670] Use errorlevel of Sphinx main() in Doc\make.bat

2018-05-28 Thread Steve Dower
Change by Steve Dower : -- assignee: -> steve.dower components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker ___ _

[issue33670] Use errorlevel of Sphinx main() in Doc\make.bat

2018-05-28 Thread Steve Dower
Steve Dower added the comment: New changeset 8c1ad0c4f69390fded09012e1ed5242c45753bb4 by Steve Dower (Andrés Delfino) in branch 'master': bpo-33670: Expose Sphinx errorlevel (GH-7156) https://github.com/python/cpython/commit/8c1ad0c4f69390fded09012e1ed5242c45753bb4 -- __

[issue33670] Use errorlevel of Sphinx main() in Doc\make.bat

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6820 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33670] Use errorlevel of Sphinx main() in Doc\make.bat

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6821 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6814 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33614] Compilation of Python fails on AMD64 Windows8.1 Refleaks 3.x

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6813 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread STINNER Victor
STINNER Victor added the comment: New changeset be00a5583a2cb696335c527b921d1868266a42c6 by Victor Stinner in branch 'master': bpo-33674: asyncio: Fix SSLProtocol race (GH-7175) https://github.com/python/cpython/commit/be00a5583a2cb696335c527b921d1868266a42c6 -- ___

[issue33674] asyncio: race condition in SSLProtocol

2018-05-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +6822 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

<    1   2   3   >