[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2018-12-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset c11b3b19a5b022c6c229043d37f9a9fd06f22500 by Victor Stinner in branch 'master': bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907) https://github.com/python/cpython/commit/c11b3b19a5b022c6c229043d37f9a9fd06f22500 --

[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2018-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +10148 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2018-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +10147 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2018-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +10149 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2018-12-04 Thread miss-islington
miss-islington added the comment: New changeset 74a80e1ed0c9067ef47f0a637d7f718a51b4f34e by Miss Islington (bot) in branch '3.7': bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907) https://github.com/python/cpython/commit/74a80e1ed0c9067ef47f0a637d7f718a51b4f34e -- no

[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2018-12-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset 65a5eff67474703329477b070d9c081fee17c69c by Victor Stinner (Miss Islington (bot)) in branch '3.6': bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907) (GH-10909) https://github.com/python/cpython/commit/65a5eff67474703329477b070d9c

[issue35411] FTP tests of test_urllib2net fail on Travis CI: 425 Security: Bad IP connecting.

2018-12-04 Thread miss-islington
miss-islington added the comment: New changeset c7976da5c262be818a06c344d43ac09b1083c80b by Miss Islington (bot) in branch '2.7': bpo-35411: Skip test_urllib2net FTP tests on Travis CI (GH-10907) https://github.com/python/cpython/commit/c7976da5c262be818a06c344d43ac09b1083c80b -- _

[issue35363] test_eintr: test_open() hangs randomly on x86-64 El Capitan 3.x buildbot

2018-12-04 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +10150 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35363] test_eintr: test_open() hangs randomly on x86-64 El Capitan 3.x buildbot

2018-12-04 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +10151 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35413] test_multiprocessing_fork: test_del_pool() leaks dangling threads and processes on AMD64 FreeBSD CURRENT Shared 3.x

2018-12-04 Thread STINNER Victor
New submission from STINNER Victor : Previous issue fixing such bug: bpo-33676. https://buildbot.python.org/all/#/builders/168/builds/332 test_empty_string (test.test_multiprocessing_fork.WithThreadsTestPoll) ... ok test_strings (test.test_multiprocessing_fork.WithThreadsTestPoll) ... ok test_

[issue34172] multiprocessing.Pool and ThreadPool leak resources after being deleted

2018-12-04 Thread STINNER Victor
STINNER Victor added the comment: multiprocessing should help the developer to detect when the API is misused. For example, emit a ResourceWarning if a pool is not released explicitly. It might help to detect such bugs: * bpo-33676 * bpo-35413 -- ___

[issue35363] test_eintr: test_open() hangs randomly on x86-64 El Capitan 3.x buildbot

2018-12-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset c93e3b05d5672dc9e8d6e2f2dce332799d5b95d2 by Victor Stinner in branch '3.7': bpo-35363, test_eintr: skip test_open() on macOS (GH-10896) (GH-10911) https://github.com/python/cpython/commit/c93e3b05d5672dc9e8d6e2f2dce332799d5b95d2 -- __

[issue35363] test_eintr: test_open() hangs randomly on x86-64 El Capitan 3.x buildbot

2018-12-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset 93d038c91dc3075dd34b41ce6b6fb4ea07fbb8c3 by Victor Stinner in branch '3.6': bpo-35363, test_eintr: skip test_open() on macOS (GH-10896) (GH-10912) https://github.com/python/cpython/commit/93d038c91dc3075dd34b41ce6b6fb4ea07fbb8c3 -- __

[issue35363] test_eintr: test_open() hangs randomly on x86-64 El Capitan 3.x buildbot

2018-12-04 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue35330] When using mock to wrap an existing object, side_effect requires return_value

2018-12-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- components: +Tests nosy: +cjw296 stage: -> test needed versions: +Python 3.7, Python 3.8 ___ Python tracker ___ _

[issue35398] SQLite incorrect row count for UPDATE

2018-12-04 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +10152 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue35398] SQLite incorrect row count for UPDATE

2018-12-04 Thread Montana Low
Montana Low added the comment: I took a stab at patch. It fixes the issue for me, as proven via the Test Case. -- ___ Python tracker ___ __

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread Zackery Spytz
New submission from Zackery Spytz : There's a missing Py_INCREF(Py_None) in PyState_RemoveModule(). -- components: Interpreter Core messages: 331091 nosy: ZackerySpytz priority: normal severity: normal status: open title: A reference counting bug in PyState_RemoveModule() versions: Pyth

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +10153 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +10154 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +10155 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2a893430c9c8378cbdfac95895a64fa07aaff9ed by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10914) https://github.com/python/cpython/commit/2a893430c9c8378cbdfac9

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
miss-islington added the comment: New changeset 2d594f857865a4719876ac545ddfd62f474522cd by Miss Islington (bot) in branch '3.7': bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10914) https://github.com/python/cpython/commit/2d594f857865a4719876ac545ddfd62f474522c

[issue35414] A reference counting bug in PyState_RemoveModule()

2018-12-04 Thread miss-islington
miss-islington added the comment: New changeset afb07fccf013f20b89b33516f126695388be47b9 by Miss Islington (bot) in branch '3.6': bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10914) https://github.com/python/cpython/commit/afb07fccf013f20b89b33516f126695388be47b

<    1   2