[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset be257bcad12b1d72a2c2a8199d2291ae22bccf78 by Serhiy Storchaka in branch '2.7': [2.7] bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155). (GH-16215) https://github.com/python/cpython/commit/be257bcad12b1d72a2c2a8199d2

[issue38195] A bug in the multiprocessing module

2019-09-16 Thread eshkrig
New submission from eshkrig : Hi! I found a bug in the multiprocessing module. The documentation (https://docs.python.org/3.6/library/multiprocessing.html) for the Queue.get method says: "If timeout is a positive number, it blocks at most timeout seconds ..." But the Queue.get method freezes

[issue38185] Weird way of case-insensitive indexing of sqlite3.Row

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 80cb055aa45f37951b8e3097fe4367d443d455ae by Miss Islington (bot) in branch '3.7': bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) https://github.com/python/cpython/commit/80cb055aa45f37951b8e3097fe4367d44

[issue38185] Weird way of case-insensitive indexing of sqlite3.Row

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset d8d653c2d0d267eb1e44f6cdb916945029fec3b1 by Miss Islington (bot) in branch '3.8': bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) https://github.com/python/cpython/commit/d8d653c2d0d267eb1e44f6cdb91694502

[issue38188] Incorrect Argument Order for Calls to _winapi.DuplicateHandle() in multiprocessing.reduction.DupHandle

2019-09-16 Thread Eryk Sun
Eryk Sun added the comment: As far as I can tell, reduction.send_handle isn't used internally in the Windows implementation, and it's also not a documented API function. However, it is tested on Windows in test_fd_transfer in Lib/test/_test_multiprocessing.py. As it turns out, the bug that C

[issue35379] IDLE's close fails io is set to None on Mac

2019-09-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Before closing this, I want to review #17822 and if the specific fix is superceded by this one, remove it. -- stage: patch review -> commit review ___ Python tracker __

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread Kubilay Kocak
Kubilay Kocak added the comment: Thanks Terry, I've restarted the worker under sudo The following builds are underway: https://buildbot.python.org/all/#/builders/168/builds/1467 (default) https://buildbot.python.org/all/#/builders/212/builds/218 (3.8) https://buildbot.python.org/all/#/builde

[issue35379] IDLE's close fails io is set to None on Mac

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 3d916a7b1ee29896bece4a6a37d8084fa3c1abf6 by Miss Islington (bot) in branch '3.7': bpo-35379: When exiting IDLE, catch any AttributeError. (GH-16212) https://github.com/python/cpython/commit/3d916a7b1ee29896bece4a6a37d8084fa3c1abf6 --

[issue35379] IDLE's close fails io is set to None on Mac

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 73ccc3322f7ad0d016478ef20237bccd0a314f0a by Miss Islington (bot) in branch '3.8': bpo-35379: When exiting IDLE, catch any AttributeError. (GH-16212) https://github.com/python/cpython/commit/73ccc3322f7ad0d016478ef20237bccd0a314f0a -- n

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: Except for an unrelated gui test on AMD Alpine, the revised tests pass all buildbots. So try with the reproducing condition whenever you want. -- stage: patch review -> commit review ___ Python tracker

[issue38185] Weird way of case-insensitive indexing of sqlite3.Row

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

[issue38185] Weird way of case-insensitive indexing of sqlite3.Row

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

[issue38185] Weird way of case-insensitive indexing of sqlite3.Row

2019-09-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset f669581a9527afb0d2325f9845a86715c0ba365d by Serhiy Storchaka in branch 'master': bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. (GH-16190) https://github.com/python/cpython/commit/f669581a9527afb0d2325f9845a86715

[issue38013] AsyncGenerator breaks when not iterated fully with RuntimeError("can't send non-None value to a just-started coroutine")

2019-09-16 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks, Ned. I love to include this in 3.7.5. I've pinged Yuri offline with ask for review -- ___ Python tracker ___

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset f04299d978793be33828dc4d5f46e9b54c81a0a2 by Miss Islington (bot) in branch '3.8': bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) https://github.com/python/cpython/commit/f04299d978793be33828dc4d5f46e9b54c81a0a2 -

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 4ac1be28281d8961e71b13623c3671245c125760 by Miss Islington (bot) in branch '3.7': bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) https://github.com/python/cpython/commit/4ac1be28281d8961e71b13623c3671245c125760 -

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +15816 pull_request: https://github.com/python/cpython/pull/16215 ___ Python tracker ___

[issue35379] IDLE's close fails io is set to None on Mac

2019-09-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +15814 stage: commit review -> patch review pull_request: https://github.com/python/cpython/pull/16213 ___ Python tracker ___ _

[issue35379] IDLE's close fails io is set to None on Mac

2019-09-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset dfd34a9cd58e8150c324190f746de919e140abe8 by Terry Jan Reedy in branch 'master': bpo-35379: When exiting IDLE, catch any AttributeError. (GH-16212) https://github.com/python/cpython/commit/dfd34a9cd58e8150c324190f746de919e140abe8 -- __

[issue35379] IDLE's close fails io is set to None on Mac

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

[issue35379] IDLE's close fails io is set to None on Mac

2019-09-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: By reading idlelib code, I determined that the error must arise from EditorWindow.close being called twice. I confirmed this with a debug print. EW.close is called from close_event, PyShell.close, and filelist.close_all_callback. For the AttributeError I se

[issue35379] IDLE's close fails io is set to None on Mac

2019-09-16 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +15813 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16212 ___ Python tracker ___ __

[issue38013] AsyncGenerator breaks when not iterated fully with RuntimeError("can't send non-None value to a just-started coroutine")

2019-09-16 Thread Ned Deily
Ned Deily added the comment: > I've added 'release blocker' priority to don't miss this bugfix for the next > release. Note that 3.7.5rc1 is scheduled to be tagged today so we need to make a decision on whether to hold the release for a fix. From a quick test, it looks like the behavior wa

[issue36274] http.client cannot send non-ASCII request lines

2019-09-16 Thread Ned Deily
Ned Deily added the comment: See msg352596 in Issue30458 for discussion of whether the regression should be considered a "release blocker" for the imminent 3.7.5 and 3.5.8 releases. -- keywords: +3.7regression nosy: +ned.deily ___ Python tracker <

[issue30458] [security][CVE-2019-9740][CVE-2019-9947] HTTP Header Injection (follow-up of CVE-2016-5699)

2019-09-16 Thread Ned Deily
Ned Deily added the comment: If I understand Jason's message correctly, the changes for Issue30458 introduced a regression in 3.7.4 and will introduce the same regression in other branches as they are released, including 3.5.8 whose rc1 is now in testing. 3.7.5rc1 is scheduled to be tagged

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread Kubilay Kocak
Kubilay Kocak added the comment: I can restart the worker to create the environment that reproduces the issue at any time to confirm the test passes, just let me know -- ___ Python tracker _

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset ad845becf29afe0507a46a4b885a9670b5d7639d by Miss Islington (bot) in branch '3.8': bpo-38183: Test_idle ignores user config directory GH-16198) https://github.com/python/cpython/commit/ad845becf29afe0507a46a4b885a9670b5d7639d -- nosy: +

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 523497cbdc8292bfc12938aaaca0ad02a7708c25 by Miss Islington (bot) in branch '3.7': bpo-38183: Test_idle ignores user config directory GH-16198) https://github.com/python/cpython/commit/523497cbdc8292bfc12938aaaca0ad02a7708c25 -- __

[issue37224] test__xxsubinterpreters failed on AMD64 Windows8.1 Refleaks 3.8

2019-09-16 Thread Kyle Stanley
Kyle Stanley added the comment: Upon further consideration, I don't think this will address the issue. If the RuntimeError was not being raised, this failure would be consistent rather than intermittent. I think I have have gotten a bit mixed up, even if the return value of PyErr_Format is

[issue38177] test_tools: test.test_tools.test_unparse.UnparseTestCase: test_tools leaked [36, 36, 36] references

2019-09-16 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyt

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 0048afc16a7e7301d5c565237db271505e5fbed9 by Terry Jan Reedy in branch 'master': bpo-38183: Test_idle ignores user config directory GH-16198) https://github.com/python/cpython/commit/0048afc16a7e7301d5c565237db271505e5fbed9 --

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

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

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +15811 stage: commit review -> patch review pull_request: https://github.com/python/cpython/pull/16207 ___ Python tracker ___ _

[issue38194] Consistently add exist_ok / missing_ok parameters to directory creation/deletion functions

2019-09-16 Thread Tim Hoffmann
New submission from Tim Hoffmann : The following functions accept exist_ok/missing_ok parameters: - Path.mkdir(exist_ok) - os.makedirs(exist_ok) - shutil.copytree(dirs_exist_ok) - (https://bugs.python.org/issue20849) - Path.unlink(missing_ok) - (https://bugs.python.org/issue33123) For consiste

[issue28556] typing.py upgrades

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 7076764992cd29e0e1f8b0ac2b92403e1a698aa6 by Miss Islington (bot) in branch '3.8': bpo-28556: Update the opening note in typing docs (GH-16204) https://github.com/python/cpython/commit/7076764992cd29e0e1f8b0ac2b92403e1a698aa6 -- __

[issue28556] typing.py upgrades

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 733193d050f317a7965faac6c3718e6e8316a8a0 by Miss Islington (bot) in branch '3.7': bpo-28556: Update the opening note in typing docs (GH-16204) https://github.com/python/cpython/commit/733193d050f317a7965faac6c3718e6e8316a8a0 -- __

[issue28556] typing.py upgrades

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

[issue28556] typing.py upgrades

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

[issue28556] typing.py upgrades

2019-09-16 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: New changeset 81528ba2e81c39f4d6bca5b785e818c7d08b8501 by Ivan Levkivskyi in branch 'master': bpo-28556: Update the opening note in typing docs (GH-16204) https://github.com/python/cpython/commit/81528ba2e81c39f4d6bca5b785e818c7d08b8501 -- ___

[issue38193] http.client should be "runnable" like http.server

2019-09-16 Thread Will Boyce
New submission from Will Boyce : I think it would be both sensible and useful if the `http.client` library exposed a "runnable" interface (similar to `http.server`). I would suggest keeping it simple, for example: python -m http.client python -m http.client -o -- components: Libra

[issue38155] Add __all__ to the datetime module

2019-09-16 Thread Tahia K
Tahia K added the comment: Thanks @corona10. I've posted a PR with all these bits. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue38155] Add __all__ to the datetime module

2019-09-16 Thread Tahia K
Change by Tahia K : -- keywords: +patch pull_requests: +15807 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/16203 ___ Python tracker _

[issue28556] typing.py upgrades

2019-09-16 Thread Ivan Levkivskyi
Change by Ivan Levkivskyi : -- pull_requests: +15808 pull_request: https://github.com/python/cpython/pull/16204 ___ Python tracker ___ _

[issue38192] Fix invocation of EchoClientProtocol

2019-09-16 Thread Hrvoje Nikšić
New submission from Hrvoje Nikšić : This is a followup on issue38178. While testing the new code, I noticed that my change introduced a bug, where the code still attempts to pass "loop" when constructing an EchoClientProtocol. A pull request is attached. Also, I've noticed that the MyProtocol

[issue38192] Fix invocation of EchoClientProtocol

2019-09-16 Thread Hrvoje Nikšić
Change by Hrvoje Nikšić : -- keywords: +patch pull_requests: +15806 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16202 ___ Python tracker ___ ___

[issue38187] test.test_tools.test_c_analyzer fails in refleak mode

2019-09-16 Thread STINNER Victor
STINNER Victor added the comment: I also opened https://bugs.python.org/issue38177#msg352474 we should only track this leak in a single issue, you can close bpo-38177. -- ___ Python tracker

[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-09-16 Thread STINNER Victor
STINNER Victor added the comment: > https://buildbot.python.org/all/#/builders/225/builds/239 This bug only occurred once, the next build (240) was fine. -- ___ Python tracker __

[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-09-16 Thread STINNER Victor
STINNER Victor added the comment: > command timed out: 1200 seconds without output running ['make', > 'buildbottest', 'TESTOPTS=-j2 -j4 ${BUILDBOT_TESTOPTS}', 'TESTPYTHONOPTS=', > 'TESTTIMEOUT=900'], attempting to kill faulthandler is supposed to display the traceback where the test hangs, b

[issue38187] test.test_tools.test_c_analyzer fails in refleak mode

2019-09-16 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +nanjekyejoannah, vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue38162] Import Long Load

2019-09-16 Thread STINNER Victor
STINNER Victor added the comment: tempfile uses a low number of random bits per filename, so collision is "likely". Two Python processes might attempt to create the same temporary file "at the same time". Maybe not two processes, but two Python threads. Rather than writing complex locking mec

[issue38191] typing.NamedTuple() should prefix parameters with '_'

2019-09-16 Thread Glenn Gribble
New submission from Glenn Gribble : At present, it is not possible to use the shorthand notation to define a NamedTuple with typename or fields. I.e., NamedTuple('MyTuple', typename=str, fields=int) does not work. Changing the parameter names to _typename and _fields would allow any non-pri

[issue33936] OPENSSL_VERSION_1_1 never defined in _hashopenssl.c

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset c55f69552cdab26362c1ff4416fe1c3e9b27ccbe by Miss Islington (bot) in branch '3.7': [3.7] bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140) (GH-16200) https://github.com/python/cpython/commit/c55f69552cdab26362c1ff4416fe1

[issue33936] OPENSSL_VERSION_1_1 never defined in _hashopenssl.c

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 1ecc75ad1cdf458c2aa7192844e83c4665a5f9b5 by Miss Islington (bot) in branch '3.8': bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140) https://github.com/python/cpython/commit/1ecc75ad1cdf458c2aa7192844e83c4665a5f9b5

[issue33936] OPENSSL_VERSION_1_1 never defined in _hashopenssl.c

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 5d55d52b61f56522e616ac1423437d4e3f641ce6 by Miss Islington (bot) in branch '2.7': bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140) https://github.com/python/cpython/commit/5d55d52b61f56522e616ac1423437d4e3f641ce6

[issue38005] Coercing strings and non-integer numbers to interpreter ID and channel ID

2019-09-16 Thread Eric Snow
Eric Snow added the comment: Yeah, dropping str support is fine. It wouldn't be hard to add it back in if later we find it's useful. :) -- ___ Python tracker ___ ___

[issue38190] regrtest: test suite completes but Tests Result is not displayed and the process hangs

2019-09-16 Thread STINNER Victor
New submission from STINNER Victor : https://buildbot.python.org/all/#/builders/225/builds/239 ... 0:21:16 load avg: 2.54 [422/423] test_venv passed (1 min 31 sec) -- running: test_tools (1 min 27 sec) running: test_tools (1 min 57 sec) running: test_tools (2 min 27 sec) running: test_tools (2

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: >From IDLE's viewpoint, the 2.7 failures are the same. In current 3.x, >GetUserCfgDir has warn = ('\n Warning: unable to create user config directory\n' + userDir + '\n Check path and permissions.\n Exiting!\n') if not idlelib.testing:

[issue33936] OPENSSL_VERSION_1_1 never defined in _hashopenssl.c

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

[issue33936] OPENSSL_VERSION_1_1 never defined in _hashopenssl.c

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 724f1a57231f9287c37255adf0e4364d12cf693d by Miss Islington (bot) (Christian Heimes) in branch 'master': bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140) https://github.com/python/cpython/commit/724f1a57231f9287c37255adf

[issue33936] OPENSSL_VERSION_1_1 never defined in _hashopenssl.c

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

[issue33936] OPENSSL_VERSION_1_1 never defined in _hashopenssl.c

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

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +15802 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16198 ___ Python tracker ___ _

[issue38162] Import Long Load

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: and related to 3.6 (security) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue38162] Import Long Load

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I close the issue because there is no discussion :/ -- components: +Unicode -Windows nosy: +ezio.melotti, matrixise, vstinner resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Pytho

[issue38165] freezes when loading a program on imports

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I close the issue because it's a duplicate of an other issue of the same author. -- nosy: +matrixise resolution: -> duplicate stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue21705] cgi.py: Multipart with more than one file is misparsed

2019-09-16 Thread Ethan Furman
Ethan Furman added the comment: The last status was "test-needed" -- has anyone verified that a test exists for this scenario? -- ___ Python tracker ___ _

[issue38189] pip does not run in virtual environment in 3.8

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I close this issue, it's not related to the packaging of Python, but just to your compilation. As explained by Ammar Askar, when you compile Python, you have to be sure that you have the openssl-dev package installed on your system You can read this page:

[issue38189] pip does not run in virtual environment in 3.8

2019-09-16 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I guess it's due to the binary not being built with ssl module. During build did you get a message like below ? Could not build the ssl module! Python requires an OpenSSL 1.0.2 or 1.1 compatible libssl with X509_VERIFY_PARAM_set1_host(). LibreSSL

[issue38189] pip does not run in virtual environment in 3.8

2019-09-16 Thread Ammar Askar
Ammar Askar added the comment: As the error says: > Can't connect to HTTPS URL because the SSL module is not available. Since you built it from source, you should check your build logs, the _ssl module likely failed to build. You're most probably missing the openssl dependency. --

[issue38189] pip does not run in virtual environment in 3.8

2019-09-16 Thread Jonathan Gossage
New submission from Jonathan Gossage : Python 3.8 was installed from source on Ubuntu 19.04 desktop and a virtual environment was created with python3.8 -m venv venvrh. When attempting to use pip to install a package, the following error was encountered: (venvrh) jgossage@jgossage-XPS-8700:~/

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 ___ Python tracker ___

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 7aae4f004e69ebec011098f85ab232e2778a0ca4 by Miss Islington (bot) (Stéphane Wirtel) in branch '3.7': [3.7] bpo-38100: Fix spelling error in unittest.mock code (GH-16195) https://github.com/python/cpython/commit/7aae4f004e69ebec011098f85ab232e2778a

[issue38188] Incorrect Argument Order for Calls to _winapi.DuplicateHandle() in multiprocessing.reduction.DupHandle

2019-09-16 Thread Ammar Askar
Change by Ammar Askar : -- nosy: +eryksun ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- pull_requests: +15801 pull_request: https://github.com/python/cpython/pull/16195 ___ Python tracker ___ __

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread Lisa Roach
Lisa Roach added the comment: (y) Thanks for looking into it Stéphane! -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Lisa, I don't close this issue because I would like to know if we have to back port to 3.7. The spelling error does exist into 3.7 -- versions: +Python 3.8, Python 3.9 ___ Python tracker

[issue38188] Incorrect Argument Order for Calls to _winapi.DuplicateHandle() in multiprocessing.reduction.DupHandle

2019-09-16 Thread Cameron Kennedy
New submission from Cameron Kennedy : The DuplicateHandle function is utilized by the DupHandle object to duplicate handles for the purpose of sending and receiving between processes on Windows systems. At least on Python 3.7.3, this function is invoked with an incorrect argument order. In mu

[issue38183] test_idle fails on AMD64 FreeBSD CURRENT Shared 3.x: GetUserCfgDir() fails with PermissionError

2019-09-16 Thread Kubilay Kocak
Kubilay Kocak added the comment: I've restarted the worker via sudo service(8), which shouldn't have the same (environment) issue as starting the rc script directly under sudo https://buildbot.python.org/all/#/builders/168/builds/1462 is running now Let me know if you need any further inform

[issue38175] Memory leak in comparison of sqlite.Row objects

2019-09-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 8debfa50407107ff2329d01081cdc12d359f1d12 by Serhiy Storchaka in branch 'master': bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155) https://github.com/python/cpython/commit/8debfa50407107ff2329d01081cdc12d359f1d12

[issue38175] Memory leak in comparison of sqlite.Row objects

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

[issue38175] Memory leak in comparison of sqlite.Row objects

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

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset cc8edfbd9c66a40e2d405e49b75227a8d2a4dd55 by Miss Islington (bot) in branch '3.8': bpo-38100: Fix spelling error in unittest.mock code (GH-16168) https://github.com/python/cpython/commit/cc8edfbd9c66a40e2d405e49b75227a8d2a4dd55 -- nosy:

[issue38136] Remove AsyncMock.assert_awaited_*

2019-09-16 Thread Lisa Roach
Change by Lisa Roach : -- keywords: +patch pull_requests: +15798 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16192 ___ Python tracker ___ _

[issue27071] unittest.TestCase.assertCountEqual is a very misleading name

2019-09-16 Thread Michael Foord
Michael Foord added the comment: I like assertPermutation (with or without the Is, slight preference for without). -- ___ Python tracker ___ _

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset a9187c31185fe7ea47271839898416400cc3d976 by Stéphane Wirtel (marcoramirezmx) in branch 'master': bpo-38100: Fix spelling error in unittest.mock code (GH-16168) https://github.com/python/cpython/commit/a9187c31185fe7ea47271839898416400cc3d976 -

[issue38100] Spelling error in unittest.mock code

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

[issue38185] Weird way of case-insensitive indexing of sqlite3.Row

2019-09-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +15796 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16190 ___ Python tracker ___

[issue38100] Spelling error in unittest.mock code

2019-09-16 Thread Lisa Roach
Lisa Roach added the comment: It helps to comment on the issue before making a PR for it to claim it, as now we have 3 PRs all for the same issue :) We will likely accept the first PR that was created (or in this case the first PR that gets a CLA signed for it) -- __

[issue38117] Update to OpenSSL 1.1.1d, 1.1.0l, 1.0.2t

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

[issue38187] test.test_tools.test_c_analyzer fails in refleak mode

2019-09-16 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Check this failure in the buildbots for reference: https://buildbot.python.org/all/#/builders/80/builds/705/steps/4/logs/stdio -- ___ Python tracker

[issue38187] test.test_tools.test_c_analyzer fails in refleak mode

2019-09-16 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : Running the test suite to check refleaks over test.test_tools.test_c_analyzer will always fail, make it impossible for the refleak buildbots to run correctly. Steps to reproduce: ./python -m test test_tools -v -R 3:3

[issue38117] Update to OpenSSL 1.1.1d, 1.1.0l, 1.0.2t

2019-09-16 Thread Steve Dower
Steve Dower added the comment: New changeset 76d8fb771659a5574604bf78eb2ee090f5c337cc by Steve Dower in branch '3.7': bpo-38117: Update bundled Windows OpenSSL to 1.1.1d (GH-16184) https://github.com/python/cpython/commit/76d8fb771659a5574604bf78eb2ee090f5c337cc --

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

2019-09-16 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

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

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 4924d558478c9bd7f7ee7cd9c00c72c0f281f1a5 by Miss Islington (bot) in branch '3.8': bpo-38081: Add more non-fatal error codes for ntpath.realpath (GH-16156) https://github.com/python/cpython/commit/4924d558478c9bd7f7ee7cd9c00c72c0f281f1a5 --

[issue38117] Update to OpenSSL 1.1.1d, 1.1.0l, 1.0.2t

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 26729ce74a47c3d16f219aee0a712011622aeeb5 by Miss Islington (bot) in branch '3.8': bpo-38117: Update bundled Windows OpenSSL to 1.1.1d (GH-16184) https://github.com/python/cpython/commit/26729ce74a47c3d16f219aee0a712011622aeeb5 --

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

2019-09-16 Thread Steve Dower
Change by Steve Dower : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

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

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

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

2019-09-16 Thread Steve Dower
Steve Dower added the comment: New changeset 89b8933bb537179f81003928786c5cc6183af591 by Steve Dower in branch 'master': bpo-38081: Add more non-fatal error codes for ntpath.realpath (GH-16156) https://github.com/python/cpython/commit/89b8933bb537179f81003928786c5cc6183af591 -- ___

[issue38117] Update to OpenSSL 1.1.1d, 1.1.0l, 1.0.2t

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

  1   2   >