[issue20182] Derby #13: Convert 50 sites to Argument Clinic across 5 files

2018-09-12 Thread Tal Einat
Change by Tal Einat : -- pull_requests: +8645 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue20182] Derby #13: Convert 50 sites to Argument Clinic across 5 files

2018-09-12 Thread Tal Einat
Tal Einat added the comment: See new updated PR9213 for completing the _hashopenssl.c conversion. -- ___ Python tracker ___ ___ Pyt

[issue1621] Do not assume signed integer overflow behavior

2018-09-12 Thread STINNER Victor
STINNER Victor added the comment: I asked if there is an issue. In fact, all Python memory allocators start by checking if the size is larger than PY_SSIZE_T_MAX. Example: void * PyMem_RawMalloc(size_t size) { /* * Limit ourselves to PY_SSIZE_T_MAX bytes to prevent security holes.

[issue28994] Misc fixes and cleanups in error handling C code

2018-09-12 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +8646 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue28994] Misc fixes and cleanups in error handling C code

2018-09-12 Thread Zackery Spytz
Zackery Spytz added the comment: In PR 2123, it was reported that the Modules/atexitmodule.c file was backported to 2.7. PR 9214 addresses this. -- nosy: +ZackerySpytz ___ Python tracker ___

[issue34639] PYTHONCOERCECLOCALE is ignored when using -E or -I option

2018-09-12 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue34628] urllib.request.urlopen fails when userinfo is present in URL

2018-09-12 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Seems like this is an explicit choice that there is also a test with the URL "user:passw...@www.python.org" . Ref : https://github.com/python/cpython/blob/731ff68eeef58babdf2b32dc9a73b141760c2be9/Lib/test/test_httplib.py#L640 . You can try basic au

[issue34628] urllib.request.urlopen fails when userinfo is present in URL

2018-09-12 Thread Niklas Sombert
Niklas Sombert added the comment: Thank you for your response. But if this is an explicit choice, I would like to have better exceptions: >>> from http.client import HTTPConnection >>> h = HTTPConnection("user:1...@example.net") raises http.client.InvalidURL: nonnumeric port: '1234@exampl

[issue34606] Unable to read zip file with extra

2018-09-12 Thread Kyle Altendorf
Kyle Altendorf added the comment: Vladimir, if compression were the cause wouldn't the extra bytes I added (signature and length) not have any effect? If you've found an issue it seems like it would be a different one than I was triggering. -- __

[issue28994] Misc fixes and cleanups in error handling C code

2018-09-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset b36567bef80202f53ebe924dd183270c276497f8 by Serhiy Storchaka (Zackery Spytz) in branch '2.7': [2.7] bpo-28994: Remove mistakenly backported atexitmodule.c (GH-9214) https://github.com/python/cpython/commit/b36567bef80202f53ebe924dd183270c27649

[issue34640] remove the configure check TANH_PRESERVES_ZERO_SIGN

2018-09-12 Thread Mark Dickinson
Mark Dickinson added the comment: > So, I think we should remove this configure check. +1. -- ___ Python tracker ___ ___ Python-bu

[issue32055] Reconsider comparison chaining for containment tests

2018-09-12 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue31903] `_scproxy` calls SystemConfiguration functions in a way that can cause deadlocks

2018-09-12 Thread Ronald Oussoren
Ronald Oussoren added the comment: Yes it should, the same problem has been present from the start. -- ___ Python tracker ___ ___ P

[issue34644] Bug in reverse method

2018-09-12 Thread Rajesh
New submission from Rajesh : List.reverse() this is working in reverse order List.reverse this is not giving syntax error and printing the list as it is. Can you consider this as bug and fix it in further versions ? -- messages: 325136 nosy: rajesh99div99 priority: n

[issue34644] Bug in reverse method

2018-09-12 Thread Steven D'Aprano
Steven D'Aprano added the comment: This is not a bug or a syntax error, and the behaviour goes back to at least Python 1.5 if not older. List.reverse returns a reference to the method object itself. List.reverse() *calls* the method. This is standard behaviour in Python, all methods and fun

[issue34640] remove the configure check TANH_PRESERVES_ZERO_SIGN

2018-09-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 865c17fb28f8c3275fd94da6ee4ac51472ec874a by Benjamin Peterson in branch 'master': closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206) https://github.com/python/cpython/commit/865c17fb28f8c3275fd94da6ee4ac51472ec87

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Floris van Manen
New submission from Floris van Manen : when using numpy defined values i get nan results. when using math defined values, no nan errors occur. check2 bb [5.0, 2.285379077161093, nan, nan, 2.285379077161092] check2 cc [5.0, 2.285379077161093, 4.341186402706317, 4.341186402706317, 2.28537907716

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue31903] `_scproxy` calls SystemConfiguration functions in a way that can cause deadlocks

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8648 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue31903] `_scproxy` calls SystemConfiguration functions in a way that can cause deadlocks

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8647 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue31903] `_scproxy` calls SystemConfiguration functions in a way that can cause deadlocks

2018-09-12 Thread miss-islington
miss-islington added the comment: New changeset 72c34cf6dd5fb206fe4d407ff603468af466fd2e by Miss Islington (bot) in branch '3.7': closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4178) https://github.com/python/cpython/commit/72c34cf6dd5fb206fe4d407ff603468af466fd2

[issue31903] `_scproxy` calls SystemConfiguration functions in a way that can cause deadlocks

2018-09-12 Thread miss-islington
miss-islington added the comment: New changeset aa12534acff4868f6dce9e2364a66fbb0ebcb3ca by Miss Islington (bot) in branch '3.6': closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4178) https://github.com/python/cpython/commit/aa12534acff4868f6dce9e2364a66fbb0ebcb3c

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Steven D'Aprano
Steven D'Aprano added the comment: Your code gives runtime warnings of invalid values. You should fix that. If your values are invalid, there's probably a bug in your code. RuntimeWarning: invalid value encountered in double_scalars Your code is also very complex. You ought to simplify the e

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Steven D'Aprano
Steven D'Aprano added the comment: Oops, sorry, I mistyped. I said: So there's a problem. You're trying to raise a negative number to a positive value I meant to say a *fractional* value. Sorry for the confusion. -- ___ Python tracker

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Floris van Manen
Floris van Manen added the comment: Well, the thing is that i pass two (apparent) identical values into the same function, and get two different results. Apparent as in one value generated via np.linspace() and one directly retrieved from a list. > On 12 Sep 2018, at 18:12, Steven D'Aprano

[issue17239] XML vulnerabilities in Python

2018-09-12 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +8649 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Floris van Manen
Floris van Manen added the comment: Well, the thing is that i pass two (apparent) identical values into the same function, and get two different results. Apparent as in one value generated via np.linspace() and one directly retrieved from a list. If i pass the np variable into to function, it

[issue33437] Defining __init__ in enums

2018-09-12 Thread miss-islington
miss-islington added the comment: New changeset f52237400b9960d434c5d0676a3479b8c1e8c869 by Miss Islington (bot) (Ethan Furman) in branch 'master': bpo-33437: add __new__ vs __init__ example (GH-9145) https://github.com/python/cpython/commit/f52237400b9960d434c5d0676a3479b8c1e8c869

[issue34646] remove PyAPI_* from function definitions

2018-09-12 Thread Benjamin Peterson
New submission from Benjamin Peterson : It suffices to have PyAPI_FUNC and PyAPI_DATA on the forward declaration in a header file. We should remove the usages we have in .c files. -- components: Interpreter Core messages: 325147 nosy: benjamin.peterson priority: normal severity: normal

[issue34282] Enum._convert shadows members named _convert

2018-09-12 Thread Ethan Furman
Ethan Furman added the comment: New changeset 0fb9fadd3b3e9e3698647e0b92d49b0b7aacd979 by Ethan Furman (orlnub123) in branch 'master': bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568) https://github.com/python/cpython/commit/0fb9fadd3b3e9e3698647e0b92d49b0b7aacd979 --

[issue34646] remove PyAPI_* from function definitions

2018-09-12 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +8650 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue26979] The danger of PyType_FromSpec()

2018-09-12 Thread Christian Tismer
Christian Tismer added the comment: Hi Petr, yes I have that what generated the wrong thing, but it is inside a specific PySide repository in a big project. Before I try to extract and simulate that, let me just show it. All types which had been no heaptypes before were already quite complica

[issue34637] Make *start* usable as a keyword argument for sum().

2018-09-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 9dfa0fe587eae3626ffc973680c6a17f35de3864 by Raymond Hettinger in branch 'master': bpo-34637: Make the *start* argument for *sum()* visible as a keyword argument. (GH-9208) https://github.com/python/cpython/commit/9dfa0fe587eae3626ffc973680c6

[issue34637] Make *start* usable as a keyword argument for sum().

2018-09-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: Discussed exposure of the first argument with GPS and agreed that we don't want people writing API sum(iterable=[10,20,30], start=0). Serhiy, yes this is a duplicate/superseder of issue31141. Will close that at well. -- resolution: -> fixed st

[issue31141] Start should be a keyword argument of the built-in sum

2018-09-12 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> out of date stage: -> resolved status: open -> closed superseder: -> Make *start* usable as a keyword argument for sum(). ___ Python tracker

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Steven D'Aprano
Steven D'Aprano added the comment: > Well, the thing is that i pass two (apparent) identical values into the same > function, Even if they have the same *numeric* value, they aren't the same kind of value, and they aren't the same function. One is and the other is . When you call ** (expo

[issue34409] Add a way to customize iteration over fields in asdict() for the nested dataclasses

2018-09-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: I recommend passing on this feature request as being too specialized and beyond the scope of what data classes are intended to do. FWIW, the information needed by a user to write their own customized iteration patterns is publicly available. One of the

[issue33649] asyncio docs overhaul

2018-09-12 Thread Bumsik Kim
Change by Bumsik Kim : -- pull_requests: +8651 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31577] crash in os.utime() in case of a bad ns argument

2018-09-12 Thread Ned Deily
Ned Deily added the comment: @Serihy, @Mark, others, any suggestions for what to do for 3.7.1? -- ___ Python tracker ___ ___ Python

[issue34409] Add a way to customize iteration over fields in asdict() for the nested dataclasses

2018-09-12 Thread Eric V. Smith
Eric V. Smith added the comment: Thanks, Raymond. I agree that this request is too specialized to add to dataclasses. Any proposal here or that I've been able to think of complicate the API for the much more common use case of not needing asdict() specialization. To the original poster: I s

[issue33649] asyncio docs overhaul

2018-09-12 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset aca819fb494d4801b3e5b5b507b17cab772c1b40 by Yury Selivanov (Bumsik Kim) in branch 'master': bpo-33649: Fix doc to reflect changes in 47cd10d (or bpo-23347) (GH-9219) https://github.com/python/cpython/commit/aca819fb494d4801b3e5b5b507b17cab772c1b

[issue23347] asyncio: fix and refactor creation of subprocess transports

2018-09-12 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset aca819fb494d4801b3e5b5b507b17cab772c1b40 by Yury Selivanov (Bumsik Kim) in branch 'master': bpo-33649: Fix doc to reflect changes in 47cd10d (or bpo-23347) (GH-9219) https://github.com/python/cpython/commit/aca819fb494d4801b3e5b5b507b17cab772c1b

[issue26544] platform.libc_ver() returns incorrect version number

2018-09-12 Thread Ned Deily
Ned Deily added the comment: This is now only open and a release blocker for 2.7, correct? -- ___ Python tracker ___ ___ Python-bug

[issue34200] importlib: python -m test test_pkg -m test_7 fails randomly

2018-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: This is consistent for me, not random. run -m test.regrtest in -v mode and it passes. remove the -v and it fails. run Lib/test/test_pkg.py directly and it fails with the details mentioned here. this prevents CI builds from succeeding for me now. (confir

[issue33649] asyncio docs overhaul

2018-09-12 Thread Bumsik Kim
Bumsik Kim added the comment: Hi, I came from #33986. I noticed that the new doc still does not reflect a design change on SubprocessTransport.close() done in #23347. I made a PR to fix that. BTW this is opposed to the original PEP 3156: https://www.python.org/dev/peps/pep-3156/#subprocess-

[issue29577] Enum: mixin classes don't mix well with already mixed Enums

2018-09-12 Thread Ethan Furman
Change by Ethan Furman : -- versions: +Python 3.8 -Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue34200] importlib: python -m test test_pkg -m test_7 fails randomly

2018-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: confirmed that this is present in 3.7 rev 72c34cf6dd as well. -- nosy: +ned.deily priority: high -> release blocker ___ Python tracker ___

[issue33986] asyncio: Typo in documentation: BaseSubprocessTransport -> SubprocessTransport

2018-09-12 Thread Bumsik Kim
Bumsik Kim added the comment: #33649 does not solve a problem of SubprocessTransport.close() done in #23347. I made a PR #33649 directly to fix that. -- ___ Python tracker __

[issue34200] importlib: python -m test test_pkg fails

2018-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: marking release blocker solely because this prevents CI runs from succeeding. I'm surprised how long this issue has been here though, i don't know what caused it to start happening consistently but as with many such heisenbugs changes at a distance could b

[issue34638] Avoid circular references in asyncio streams

2018-09-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset a5d1eb8d8b7add31b5f5d9bbb31cee1a491b2c08 by Andrew Svetlov in branch 'master': bpo-34638: Store a weak reference to stream reader to break strong references loop (GH-9201) https://github.com/python/cpython/commit/a5d1eb8d8b7add31b5f5d9bbb31cee1

[issue34536] Enum._missing_ doesn't raise TypeError when a non-Enum object is a returned

2018-09-12 Thread Ethan Furman
Ethan Furman added the comment: New changeset 019f0a0cb85ebc234356415f3638b9bd77528e55 by Ethan Furman in branch 'master': bpo-34536: raise error for invalid _missing_ results (GH-9147) https://github.com/python/cpython/commit/019f0a0cb85ebc234356415f3638b9bd77528e55 -- ___

[issue34638] Avoid circular references in asyncio streams

2018-09-12 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue31577] crash in os.utime() in case of a bad ns argument

2018-09-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: PR 3752 LGTM. I have reran CI tests, if they will be passed, the PR can be merged. This PR was not merged only because we discussed possible alternate solutions and lost an opportunity to merge it for 3.7.0. I agree that timedelta.__divmod__ doesn't have s

[issue20180] Derby #11: Convert 50 sites to Argument Clinic across 9 files

2018-09-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: > Now just the collections module is left from this group. > Raymond, what would you like done with it WRT AC conversion, > if at all? I would like to pass on the collections module. Having looked at the patch, I think the code is currently better as is.

[issue34645] math and numpy yield different results (nan)

2018-09-12 Thread Floris van Manen
Floris van Manen added the comment: I know it has nothing todo with linspace. But there seems to be a link to using numpy generated variables and not using them. >From a naive point of view i’d expect the same results. But it does not. There is two functions, and two variables. And from the fou

[issue34646] remove PyAPI_* from function definitions

2018-09-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset e5024517811ee990b770fca0ba7058742d00e032 by Benjamin Peterson in branch 'master': closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) https://github.com/python/cpython/commit/e5024517811ee990b770fca0ba7058742d00e032 ---

[issue34647] print sys.thread_info in regrtest header

2018-09-12 Thread Benjamin Peterson
New submission from Benjamin Peterson : It might be useful to see the thread implementation info in the header. -- components: Tests messages: 325170 nosy: benjamin.peterson priority: normal severity: normal status: open title: print sys.thread_info in regrtest header versions: Python 3

[issue34647] print sys.thread_info in regrtest header

2018-09-12 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +8652 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue31577] crash in os.utime() in case of a bad ns argument

2018-09-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 0bd1a2dcfdf36b181385ae61361e7692f4ebb0fd by Serhiy Storchaka (Oren Milman) in branch 'master': bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752) https://github.com/python/cpython/commit/0bd1a2dcfdf36b181385ae61361e76

[issue31577] crash in os.utime() in case of a bad ns argument

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8653 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34247] PYTHONOPTIMIZE ignored in 3.7.0 when using custom launcher

2018-09-12 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +8654 stage: commit review -> patch review ___ Python tracker ___ ___ Python-bugs-list maili

[issue34247] PYTHONOPTIMIZE ignored in 3.7.0 when using custom launcher

2018-09-12 Thread Ned Deily
Ned Deily added the comment: PR 9223 adds Nick's proposed wording to the 3.7 What's News. -- ___ Python tracker ___ ___ Python-bugs

[issue34647] print sys.thread_info in regrtest header

2018-09-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: Actually, this is already in "make pythoninfo", which is enough, I think. -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue31577] crash in os.utime() in case of a bad ns argument

2018-09-12 Thread miss-islington
miss-islington added the comment: New changeset 329ea4ef7cc3a907a64c6f0702fc93206b6744de by Miss Islington (bot) in branch '3.7': bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752) https://github.com/python/cpython/commit/329ea4ef7cc3a907a64c6f0702fc93206b6744de --

[issue34004] Acquiring locks not interrupted by signals on musl libc

2018-09-12 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +8655 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue34648] Confirm the type of traceback.format_list post-3.5

2018-09-12 Thread Nathaniel Manista
New submission from Nathaniel Manista : So I'm fixing a bug in typeshed's accounting of the traceback module (https://github.com/python/typeshed/pull/2436) and the documented semantics of traceback.format_list don't quite smell to me what I think they might be intended to be: 1) I know it ha

[issue34648] Confirm the types of parameters of traceback.format_list and traceback.StackSummary.from_list post-3.5

2018-09-12 Thread Nathaniel Manista
Nathaniel Manista added the comment: ... and while we're here, how about StackSummary.from_list's "a_list" parameter as well: 3) Can it be Iterable? It looks like it can be Iterable? Is it fine for it to be Iterable? 4) Should the component type of "a_list" be FrameSummary? Is the support f

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread Alexey Izbyshev
New submission from Alexey Izbyshev : The return value of PyUnicode_InternFromString() is not checked for NULL and then dereferenced at three places in https://github.com/python/cpython/blob/0bd1a2dcfdf36b181385ae61361e7692f4ebb0fd/Modules/_json.c#L1369 Reported by Svace static analyzer. ---

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- keywords: +patch pull_requests: +8656 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue34004] Acquiring locks not interrupted by signals on musl libc

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8657 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34004] Acquiring locks not interrupted by signals on musl libc

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8658 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34004] Acquiring locks not interrupted by signals on musl libc

2018-09-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 5b10d5111d7a855297654af9045f8907b7d3dd08 by Benjamin Peterson in branch 'master': closes bpo-34004: Skip lock interruption tests on musl. (GH-9224) https://github.com/python/cpython/commit/5b10d5111d7a855297654af9045f8907b7d3dd08 --

[issue34650] test_posix fails with musl

2018-09-12 Thread Benjamin Peterson
New submission from Benjamin Peterson : ERROR: test_get_and_set_scheduler_and_param (test.test_posix.PosixTester) -- Traceback (most recent call last): File "/buildbot/buildarea/3.x.ware-alpine/build/Lib/test/test_posix.py", l

[issue34650] test_posix fails with musl

2018-09-12 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +8659 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue34630] Don't log ssl cert errors in asyncio

2018-09-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 0dd71807a98c4a86ece2aea869ea99f09204b16b by Andrew Svetlov in branch 'master': bpo-34630: Skip logging SSL certificate errors by asyncio code (GH-9169) https://github.com/python/cpython/commit/0dd71807a98c4a86ece2aea869ea99f09204b16b -

[issue34282] Enum._convert shadows members named _convert

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8660 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset 6f82bffd2df63a4072b3f0483cdbe93ddedb87e9 by Berker Peksag (Alexey Izbyshev) in branch 'master': bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225) https://github.com/python/cpython/commit/6f82bffd2df63a4072b3f0483cdbe93ddedb87e9 -

[issue34651] Disallow fork in a subinterpreter.

2018-09-12 Thread Eric Snow
New submission from Eric Snow : os.fork() potentially has some problematic behavior when called from a subinterpreter. In additional to the normal fork+threads madness, there's the question of what to do with existing subinterpreters. The simplest solution is to simply disallow fork in a su

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8661 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8662 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +8663 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34004] Acquiring locks not interrupted by signals on musl libc

2018-09-12 Thread miss-islington
miss-islington added the comment: New changeset b608fcd444c00ff37a19d34e4eeadb1221fb6436 by Miss Islington (bot) in branch '3.7': closes bpo-34004: Skip lock interruption tests on musl. (GH-9224) https://github.com/python/cpython/commit/b608fcd444c00ff37a19d34e4eeadb1221fb6436 -- no

[issue34004] Acquiring locks not interrupted by signals on musl libc

2018-09-12 Thread miss-islington
miss-islington added the comment: New changeset 5a435eac1b83f080c9dfceff0de0d639541e4bcb by Miss Islington (bot) in branch '3.6': closes bpo-34004: Skip lock interruption tests on musl. (GH-9224) https://github.com/python/cpython/commit/5a435eac1b83f080c9dfceff0de0d639541e4bcb -- _

[issue33649] asyncio docs overhaul

2018-09-12 Thread Carol Willing
Change by Carol Willing : -- pull_requests: +8664 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue34652] never enable lchmod on Linux

2018-09-12 Thread Benjamin Peterson
New submission from Benjamin Peterson : You can't modify the mode of symbolic links on Linux. Thus, lchmod is a useless function. libc may, however, define a lchmod stub that always returns an error. autoconf has a check that detects the dummy stub for glibc, but it detects lchmod as working

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset ec4d099b9f1951b08d1a53181c278173ff6a0cc1 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225) https://github.com/python/cpython/commit/ec4d099b9f1951b08d1a53181c278173ff6a0cc1

[issue34652] never enable lchmod on Linux

2018-09-12 Thread Benjamin Peterson
Change by Benjamin Peterson : -- keywords: +patch pull_requests: +8665 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue34200] importlib: python -m test test_pkg fails

2018-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: this also happens in 3.6. whatever the problem is, it has been around a long time. -- priority: release blocker -> deferred blocker versions: +Python 3.6 ___ Python tracker

[issue34200] importlib: python -m test test_pkg fails semi-randomly

2018-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: and I do agree that it is somewhat random. while i have some situations where I can reproduce this, i have others where I can rerun exactly the same binary and single process single thread process running just test_pkg.py and nothing else where the behavi

[issue34653] PyParser_SimpleParseStringFilename should be deleted

2018-09-12 Thread Eric V. Smith
New submission from Eric V. Smith : There are 6 PyParser_SimpleParse* functions in pythonrun.c. 5 of them are documented in c-api/veryhigh.rst and appear in pythonrun.h. But PyParser_SimpleParseStringFilename is not documented and is not in any .h file. I propose we delete PyParser_SimplePars

[issue33649] asyncio docs overhaul

2018-09-12 Thread Carol Willing
Change by Carol Willing : -- pull_requests: +8666 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset 6d726868cd1743623a28b8e048e31b9c3c52a399 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225) https://github.com/python/cpython/commit/6d726868cd1743623a28b8e048e31b9c3c52a399

[issue34455] Tkinter crashing when pressing Command + ^ (OSX)

2018-09-12 Thread Ned Deily
Ned Deily added the comment: The crash can also be reproduced with a Spanish keyboard selected and using the Tcl/Tk wish shell edit text demo. So it's definitely not a Python (tkinter or IDLE) issue. I see that Kevin Walzer, the primary maintainer for Tk on macOS, is CC here. If anyone wa

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread Berker Peksag
Berker Peksag added the comment: New changeset 669429fb583031c7c87392e30b065e99a2d8ccda by Berker Peksag (Miss Islington (bot)) in branch '2.7': bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225) https://github.com/python/cpython/commit/669429fb583031c7c87392e30b065e99a2d8ccda

[issue34649] Modules/_json.c: Missing NULL checks in _encoded_const()

2018-09-12 Thread Berker Peksag
Berker Peksag added the comment: Thanks, Alexey! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue34200] importlib: python -m test test_pkg fails semi-randomly

2018-09-12 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34200] importlib: python -m test test_pkg fails semi-randomly

2018-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: kinda poking at ideas here, but from a lunch conversation could this be related to the filesystem iteration order within the temp directories. assigned to me while i investigate possibilities. -- ___ Python trac

[issue34650] test_posix fails with musl

2018-09-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset c7042224b8a67748f125c22836862483f81a87a6 by Benjamin Peterson in branch 'master': closes bpo-34650: Check if sched_getscheduler returns ENOSYS before declaring it supported. (GH-9228) https://github.com/python/cpython/commit/c7042224b8a67748

[issue34650] test_posix fails with musl

2018-09-12 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +8667 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue34650] test_posix fails with musl

2018-09-12 Thread Benjamin Peterson
Change by Benjamin Peterson : -- pull_requests: +8668 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

  1   2   >