[issue37221] PyCode_New API change breaks backwards compatibility policy

2019-06-10 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +13825 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/13959 ___ Python tracker ___

[issue37220] test_idle crash on Windows when run with -R:

2019-06-10 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +13826 pull_request: https://github.com/python/cpython/pull/13958 ___ Python tracker ___ __

[issue33758] Unexpected success of test_get_type_hints_modules_forwardref in test_typing

2019-06-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: In particular, test_typing has an unexpected success if you run it after test___all__. It would be nice at least to change the expected fail to a skip, since it's so subtle. -- nosy: +benjamin.peterson ___ Pyth

[issue37221] PyCode_New API change breaks backwards compatibility policy

2019-06-10 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I have created PR13959 in case we decide to go with the PyCode_NewEx path. -- keywords: -patch stage: patch review -> needs patch ___ Python tracker

[issue36422] tempfile.TemporaryDirectory() removes entire directory tree even if it's a mount-point

2019-06-10 Thread Jeffrey Kintscher
Jeffrey Kintscher added the comment: tempfile.TemporaryDirectory() relies upon shutil.rmtree() to do the actual cleanup. Up through 3.7, it simply calls shutil.rmtree(). 3.8 adds some more logic using the onerror callback parameter of shutil.rmtree() to try changing the permissions on otherw

[issue35184] Makefile is not correctly generated when compiling pyextat with DXML_POOR_ENTROPY=1

2019-06-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +13827 pull_request: https://github.com/python/cpython/pull/13960 ___ Python tracker ___ __

[issue35184] Makefile is not correctly generated when compiling pyextat with DXML_POOR_ENTROPY=1

2019-06-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +13828 pull_request: https://github.com/python/cpython/pull/13961 ___ Python tracker ___ __

[issue37220] test_idle crash on Windows 2.7 when run with -R:

2019-06-10 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: -patch title: test_idle crash on Windows when run with -R: -> test_idle crash on Windows 2.7 when run with -R: type: -> crash versions: +Python 3.7, Python 3.8, Python 3.9 ___ Python tracker

[issue35184] Makefile is not correctly generated when compiling pyextat with DXML_POOR_ENTROPY=1

2019-06-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 408a2ef1aceff1f4270c44552fa39ef93d9283e3 by Benjamin Peterson (aaronpaulhurst) in branch 'master': closes bpo-35184: Fix XML_POOR_ENTROPY option that breaks makesetup parsing of pyexpat line in Setup. (GH-13064) https://github.com/python/cpy

[issue37221] PyCode_New API change breaks backwards compatibility policy

2019-06-10 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +scoder ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue35184] Makefile is not correctly generated when compiling pyextat with DXML_POOR_ENTROPY=1

2019-06-10 Thread miss-islington
miss-islington added the comment: New changeset 5b94b857f590db80aab69c31f88dd2a4978f8329 by Miss Islington (bot) in branch '3.8': closes bpo-35184: Fix XML_POOR_ENTROPY option that breaks makesetup parsing of pyexpat line in Setup. (GH-13064) https://github.com/python/cpython/commit/5b94b857

[issue35184] Makefile is not correctly generated when compiling pyextat with DXML_POOR_ENTROPY=1

2019-06-10 Thread miss-islington
miss-islington added the comment: New changeset 30fd7a476bbd6bb8096c1349698463fa8a3bca18 by Miss Islington (bot) in branch '3.7': closes bpo-35184: Fix XML_POOR_ENTROPY option that breaks makesetup parsing of pyexpat line in Setup. (GH-13064) https://github.com/python/cpython/commit/30fd7a47

[issue34028] Python 3.7.0 wont compile with SSL Support 1.1.0 > alledged missing X509_VERIFY_PARAM_set1_host() support

2019-06-10 Thread Phillip Middleton
Phillip Middleton added the comment: I have the same issue installing v3.7.3 on RHEL6.8. The standard version came with openssl v1.0.1c, which would not configure. I installed openssl 1.0.2s in /usr/local and created a file /etc/profile.d/openssl.sh adding the following lines: # /etc/profi

[issue37216] mac installation document wrong for python 3.7.3

2019-06-10 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +13829 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13962 ___ Python tracker ___ __

[issue37216] mac installation document wrong for python 3.7.3

2019-06-10 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +13830 pull_request: https://github.com/python/cpython/pull/13963 ___ Python tracker ___ ___

[issue37216] mac installation document wrong for python 3.7.3

2019-06-10 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +13831 pull_request: https://github.com/python/cpython/pull/13964 ___ Python tracker ___ ___

[issue35586] Open pyexpat compilation, Make shows error(missing separator)

2019-06-10 Thread Aaron Hurst
Aaron Hurst added the comment: I believe this bug can be closed now that the following have landed: New changeset 408a2ef1aceff1f4270c44552fa39ef93d9283e3 by Benjamin Peterson (aaronpaulhurst) in branch 'master': closes bpo-35184: Fix XML_POOR_ENTROPY option that breaks makesetup parsing of

[issue35586] Open pyexpat compilation, Make shows error(missing separator)

2019-06-10 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> Makefile is not correctly generated when compiling pyextat with DXML_POOR_ENTROPY=1 ___ Python tracker

[issue34886] subprocess.run throws exception when input and stdin are passed as kwargs

2019-06-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: thanks! -- assignee: -> gregory.p.smith resolution: -> fixed stage: patch review -> commit review status: open -> closed versions: +Python 3.8, Python 3.9 ___ Python tracker

[issue19666] Format string for ASCII unicode or bytes-like object as readonly buffer

2019-06-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: "needs patch" doesn't mean it has been accepted, it's just a common state for issues where nobody has written any code even as a proof of concept. Christian - is this still desired? -- nosy: +gregory.p.smith ___

[issue37219] empty set difference does not check types of values

2019-06-10 Thread Raymond Hettinger
Raymond Hettinger added the comment: Nice catch. Thanks. -- assignee: -> rhettinger priority: normal -> high ___ Python tracker ___ _

[issue37216] mac installation document wrong for python 3.7.3

2019-06-10 Thread Ned Deily
Ned Deily added the comment: New changeset fe5f8b9ce2e504d4510cc82129d595015d239634 by Ned Deily (Makdon) in branch '3.8': [3.8] bpo-37216: Fix version and filename in Mac using document (GH-13964) https://github.com/python/cpython/commit/fe5f8b9ce2e504d4510cc82129d595015d239634 --

[issue37216] mac installation document wrong for python 3.7.3

2019-06-10 Thread Ned Deily
Ned Deily added the comment: New changeset c59b137bbfc7eb7a9386bb51c7fea838fc2a by Ned Deily (Makdon) in branch '3.7': [3.7] bpo-37216: Fix version and filename in Mac using document (GH-13963) https://github.com/python/cpython/commit/c59b137bbfc7eb7a9386bb51c7fea838fc2a --

[issue37216] "Using Python on a Macintosh" chapter of "Python Setup and Usage" doc is out-of-date

2019-06-10 Thread Ned Deily
Change by Ned Deily : -- assignee: docs@python -> ned.deily title: mac installation document wrong for python 3.7.3 -> "Using Python on a Macintosh" chapter of "Python Setup and Usage" doc is out-of-date versions: +Python 3.8, Python 3.9 ___ Python

[issue37038] Make idlelib/run.py runnable.

2019-06-10 Thread Tal Einat
Tal Einat added the comment: Terry, I believe this can be closed now that the fix has been merged? -- nosy: +taleinat ___ Python tracker ___ __

[issue28071] Stop set.difference when set is empty

2019-06-10 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Behavior change in msg306973 is tracked with issue37219 -- nosy: +xtreak ___ Python tracker ___ ___

[issue37217] SSL socket segfaults during a connect() using a punycode domain containg a umlaut

2019-06-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: FWIW, I could reproduce this on early 3.5 versions but it appears to have been fixed between 3.5.3 and 3.5.4. I'm leaving this open in case anyone can tie it back to a particular change. -- components: +Extension Modules -ctypes nosy: +gregory.p.sm

[issue37220] test_idle crash on Windows 2.7 when run with -R:

2019-06-10 Thread Tal Einat
Tal Einat added the comment: Terry, we can also just revert the fix on the 2.7 branch, it's not crucial. -- ___ Python tracker ___

[issue37038] Make idlelib/run.py runnable.

2019-06-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yes, thank you. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue37220] test_idle crash on Windows 2.7 when run with -R:

2019-06-10 Thread Tal Einat
Tal Einat added the comment: Now that I've looked at the PR, it should likely be merged for all relevant branches to make the test more robust. -- ___ Python tracker ___

[issue37217] SSL socket segfaults during a connect() using a punycode domain containg a umlaut

2019-06-10 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I couldn't get an ssl build with 3.5.4 to verify this but looking at changelog between 3.5.3 and 3.5.4 issue30594 might have fixed it since it reports a similar segfault. -- nosy: +xtreak ___ Python trac

[issue37217] SSL socket segfaults during a connect() using a punycode domain containg a umlaut

2019-06-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: oh that is likely it, the stacktrace i got in a pydebug build was a gc time refcount != 0 assertion. -- superseder: -> Refcounting mistake in _ssl.c ___ Python tracker _

[issue37217] SSL socket segfaults during a connect() using a punycode domain containg a umlaut

2019-06-10 Thread Christian Heimes
Christian Heimes added the comment: Yes, this looks like a duplicate of issue30594. kmille, please contact Ubuntu and ask them to apply the fix to 16.04. By the way, your hostname is not correct. "xn--b" is an invalid punycode. The correct IDNA encoding for the domain looks like this: >>> "w

[issue37219] empty set difference does not check types of values

2019-06-10 Thread Raymond Hettinger
Change by Raymond Hettinger : -- keywords: +patch pull_requests: +13832 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13965 ___ Python tracker __

[issue37129] Add os.RWF_APPEND flag for os.pwritev

2019-06-10 Thread Gregory P. Smith
Gregory P. Smith added the comment: This is just adding a missing constant (when defined at CPython compile time) to the os module. I suggest landing this in 3.8 as well assuming we're still in the beta cycles when the PR is ready. It isn't a functional change. -- nosy: +gregory.p.

[issue36993] zipfile: tuple IndexError on extract

2019-06-10 Thread alter-bug-tracer
alter-bug-tracer added the comment: @berker.peksag, first of all sorry for the late reply. We are not sure that we know how to do that. Our tests are generated automatically. What we can do is retest the lib with your temporary fixes in place, to see if they fix all the problems our software

[issue37221] PyCode_New API change breaks backwards compatibility policy

2019-06-10 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

<    1   2