[issue37812] Make implicit returns explicit in longobject.c (in CHECK_SMALL_INT)

2019-08-23 Thread Greg Price
Change by Greg Price : -- pull_requests: +15140 pull_request: https://github.com/python/cpython/pull/15448 ___ Python tracker ___

[issue19119] duplicate test name in Lib/test/test_heapq.py

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: Removed the bogus test -- it was a cut-and-paste error from a scratch file. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue19119] duplicate test name in Lib/test/test_heapq.py

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset ef3ccd737020a0bb49ea0bfe48069f89bb5370a1 by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-19119: Remove invalid test and rename a misnamed test (GH-15442) (GH-15447)

[issue19119] duplicate test name in Lib/test/test_heapq.py

2019-08-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +15139 pull_request: https://github.com/python/cpython/pull/15447 ___ Python tracker ___

[issue19119] duplicate test name in Lib/test/test_heapq.py

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 4101181fd87c2fab6456663d3c8cc99377cf0463 by Raymond Hettinger in branch 'master': bpo-19119: Remove invalid test and rename a misnamed test (GH-15442) https://github.com/python/cpython/commit/4101181fd87c2fab6456663d3c8cc99377cf0463

[issue37461] email.parser.Parser hang

2019-08-23 Thread Abhilash Raj
Abhilash Raj added the comment: I manually created a backport PR for 3.5 and added Larry as a reviewer. https://github.com/python/cpython/pull/15446 -- ___ Python tracker

[issue37461] email.parser.Parser hang

2019-08-23 Thread Abhilash Raj
Change by Abhilash Raj : -- pull_requests: +15138 pull_request: https://github.com/python/cpython/pull/15446 ___ Python tracker ___

[issue14010] deeply nested itertools objects segfault

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: [Armin] > It's just one of many places where CPython does a recursion > without checking the recursion depth. CPython still works, > based on the resonable assumption that doing such a recursion > here is obscure. I agree with that assessment and am

[issue37461] email.parser.Parser hang

2019-08-23 Thread Ned Deily
Ned Deily added the comment: xtreak, would you be willing to make the PR for 3.5? That will make it easier for Larry to decide whether to include it in a 3.5 security release. -- ___ Python tracker

[issue37461] email.parser.Parser hang

2019-08-23 Thread Ned Deily
Ned Deily added the comment: New changeset f1f9c0c532089824791cfc18e6d6f29e1cd62596 by Ned Deily (GeeTransit) in branch '3.6': [3.6] bpo-37461: Fix typo (inifite -> infinite) (#15432) https://github.com/python/cpython/commit/f1f9c0c532089824791cfc18e6d6f29e1cd62596 --

[issue37461] email.parser.Parser hang

2019-08-23 Thread George Zhang
Change by George Zhang : -- pull_requests: +15137 pull_request: https://github.com/python/cpython/pull/15432 ___ Python tracker ___

[issue37461] email.parser.Parser hang

2019-08-23 Thread Ned Deily
Ned Deily added the comment: New changeset 799e4e527019d9429fdef12d08a0c03b08a1fb59 by Ned Deily (GeeTransit) in branch '3.7': [3.7] bpo-37461: Fix typo (inifite -> infinite) (GH-15430) https://github.com/python/cpython/commit/799e4e527019d9429fdef12d08a0c03b08a1fb59 --

[issue37461] email.parser.Parser hang

2019-08-23 Thread George Zhang
Change by George Zhang : -- pull_requests: +15136 pull_request: https://github.com/python/cpython/pull/15430 ___ Python tracker ___

[issue19119] duplicate test name in Lib/test/test_heapq.py

2019-08-23 Thread Raymond Hettinger
Change by Raymond Hettinger : -- pull_requests: +15135 pull_request: https://github.com/python/cpython/pull/15442 ___ Python tracker ___

[issue35235] Access violation on alloc in Windows x86-64 python, pymalloc_alloc

2019-08-23 Thread Victor Milovanov
Victor Milovanov added the comment: In my case it always happens in pymalloc_alloc when size == 5, e.g. when accessing usedpools[10]. Specifically freeblock pointer in usedpools[10] is wy off (essentially, seemingly random number looking like 0xX000) where it is supposed to be (e.g.

[issue35235] Access violation on alloc in Windows x86-64 python, pymalloc_alloc

2019-08-23 Thread Victor Milovanov
Victor Milovanov added the comment: This reproduces stably for me when running unit tests in Python.NET project at commit 5e276d9. -- nosy: +Victor Milovanov ___ Python tracker

[issue35998] test_asyncio: test_start_tls_server_1() TimeoutError on Fedora 29

2019-08-23 Thread Open Close
Open Close added the comment: For me, since GH-14080, It's been fixed. (arch linux) -- ___ Python tracker ___ ___ Python-bugs-list

[issue34259] Improve docstring of list.sort

2019-08-23 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue17794] Add a key parameter to PriorityQueue

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: Starting in Python 3.7, dataclasses made it trivially easy to work around this issue. The PriorityQueue docs have a worked out example of how to do this: https://docs.python.org/3/library/queue.html#queue.PriorityQueue -- resolution: -> out of

[issue9985] difflib.SequenceMatcher has slightly buggy and undocumented caching behavior

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: This was fixed for Python 2.7 and Python 3.4 and later. -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-23 Thread Dong-hee Na
Dong-hee Na added the comment: > There's one more step. Can you please amend to the tests to run both the > pure python and C versions. Sure, I will take look at it! -- ___ Python tracker

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-23 Thread Raymond Hettinger
Change by Raymond Hettinger : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks for doing the work one this. Nice work :-) There's one more step. Can you please amend to the tests to run both the pure python and C versions. See Lib/test/test_heapq.py for an example of how to this. --

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 5779c536321e1405b4c17654a85b8f9221be765e by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266) (GH-15441)

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 0a18ee4be7ba215f414bef04598e0849504f9f1e by Raymond Hettinger (Dong-hee Na) in branch 'master': bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266)

[issue37798] Add C fastpath for statistics.NormalDist.inv_cdf()

2019-08-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +15134 pull_request: https://github.com/python/cpython/pull/15441 ___ Python tracker ___

[issue18078] threading.Condition to allow notify on a specific waiter

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: Marking this as closed/rejected for the reasons listed above. Thank you all for the thoughtful and intelligent discussion. -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python

[issue29352] provide the authorative source for s[i:j] negative slice indices (<-len(s)) behavior for standard sequences

2019-08-23 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue22001] containers "same" does not always mean "__eq__".

2019-08-23 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37933] faulthandler causes segfaults

2019-08-23 Thread Thomas Caswell
Change by Thomas Caswell : -- keywords: +patch pull_requests: +15133 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15440 ___ Python tracker ___

[issue37934] Docs: Clarify NotImplemented use cases

2019-08-23 Thread Kyle Stanley
New submission from Kyle Stanley : In the documentation for the NotImplemented constant (https://docs.python.org/3/library/constants.html#NotImplemented), the only use case mentioned is for binary special methods, (such as object.__eq__(other)). However, based on a conversation in a recent

[issue37585] Comparing PyDictValues does not give expected results

2019-08-23 Thread Kyle Stanley
Change by Kyle Stanley : -- stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37933] faulthandler causes segfaults

2019-08-23 Thread Thomas Caswell
Change by Thomas Caswell : -- components: +Extension Modules -Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37933] faulthandler causes segfaults

2019-08-23 Thread Thomas Caswell
New submission from Thomas Caswell : Changing faulthandler to only allocate it's stack when use causes python to segfault with import faulthandler faulthandler.cancel_dump_traceback_later() https://bugs.python.org/issue37851 https://github.com/python/cpython/pull/15358 --

[issue37932] ConfigParser.items(section) with allow_no_value returns empty strings

2019-08-23 Thread Sean Robertson
New submission from Sean Robertson : Hello and thanks for reading. I've also experienced this in Python 3.7, and I believe it to be around since 3.2. The allow_no_value option of ConfigParser allows None values when (de)serializing configuration files. Yet calling the "items(section)"

[issue37884] Optimize Fraction() and statistics.mean()

2019-08-23 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: > FWIW, the entire point of us having recently added as_integer_ratio() methods > to so many concrete classes is to avoid the need for helper functions in > favor of a simple try/except around a single call. But what about PEP 3141? The fractions.Fraction

[issue37531] Fix regrtest timeout for subprocesses: regrtest -jN --timeout=SECONDS

2019-08-23 Thread Eryk Sun
Eryk Sun added the comment: Alternatively, instead of special casing the file type and spinning on PeekNamedPipe, the workaround could be based on a multiple-object wait that includes the child process handle. In this case, communicate() would always call _communicate in Windows, regardless

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset af84a88ef8b3288da528d2f52b7d3fbafb8dc8a6 by Victor Stinner in branch '3.8': bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435) https://github.com/python/cpython/commit/af84a88ef8b3288da528d2f52b7d3fbafb8dc8a6

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread miss-islington
miss-islington added the comment: New changeset 3921d12174c1998d9df7a08d036a7fef2d587a64 by Miss Islington (bot) in branch '3.8': bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389) https://github.com/python/cpython/commit/3921d12174c1998d9df7a08d036a7fef2d587a64

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread miss-islington
miss-islington added the comment: New changeset f8dc3e85ab01e1b0345738670dcb3993da7ec436 by Miss Islington (bot) in branch '3.7': bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389) https://github.com/python/cpython/commit/f8dc3e85ab01e1b0345738670dcb3993da7ec436

[issue37930] make fails when compiling Python 2.6 from source (posixmodule.c)

2019-08-23 Thread Ned Deily
Ned Deily added the comment: Python 2.6 reached end-of-life in 2013, six years ago, and has not received any non-security bug fixes since 2010. We strongly recommend thst you migrate to a modern, supported version of Python, if not Python 3.7, then at least Python 2.7 which itself will

[issue37916] distutils: allow overriding of the RANLIB command on macOS (darwin)

2019-08-23 Thread Ned Deily
Change by Ned Deily : -- components: +Distutils nosy: +dstufft, eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +15132 pull_request: https://github.com/python/cpython/pull/15438 ___ Python tracker ___

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +15131 pull_request: https://github.com/python/cpython/pull/15437 ___ Python tracker ___

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread Steve Dower
Steve Dower added the comment: New changeset 5be666010e4df65dc4d831435cc92340ea369f94 by Steve Dower (Zackery Spytz) in branch 'master': bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389) https://github.com/python/cpython/commit/5be666010e4df65dc4d831435cc92340ea369f94

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread Steve Dower
Steve Dower added the comment: Thanks, Eryk. In that case, I'll merge the PR. Since Python 3.9 will not support Windows 7, we can remove it from master as soon as the backports are done :) -- assignee: -> steve.dower ___ Python tracker

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread Eryk Sun
Eryk Sun added the comment: > Should we add a version check as well [1]? I'm not totally comfortable > with bitmasking a handle here, but if we only do this additional > check on Win7 then I'm okay with it. A version check should not be necessary. For file objects, setting both handle tag

[issue14112] tutorial intro talks of "shallow copy" concept without explanation

2019-08-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: With /like/link/ I agree. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17642] IDLE add font resizing hot keys and wheel

2019-08-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I want this too, and part of it should be simple. Given that I have had a never empty backlog of PRs to review for 2 1/2 years, it got forgotten. There was also a tk problem that seemed to block implementation. Specification for hotkey: Cntl/Cmd - -+=

[issue26589] Add HTTP Response code 451

2019-08-23 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue26589] Add HTTP Response code 451

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 761e5a7c7f57cf2a09106c0afa038f04de6a9ed2 by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-26589: Add http status code 451 (GH-15413) (GH-15436) https://github.com/python/cpython/commit/761e5a7c7f57cf2a09106c0afa038f04de6a9ed2

[issue9938] Add optional kwargs to argparse

2019-08-23 Thread hai shi
Change by hai shi : -- title: Improving interactive use of argparse -> Add optional kwargs to argparse ___ Python tracker ___ ___

[issue26589] Add HTTP Response code 451

2019-08-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +15130 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/15436 ___ Python tracker ___

[issue26589] Add HTTP Response code 451

2019-08-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 8f080b09953a2d862de5c74edf414a54ea3dbea5 by Raymond Hettinger in branch 'master': bpo-26589: Add http status code 451 (GH-15413) https://github.com/python/cpython/commit/8f080b09953a2d862de5c74edf414a54ea3dbea5 --

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15129 pull_request: https://github.com/python/cpython/pull/15435 ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread miss-islington
miss-islington added the comment: New changeset 9cbdce3917ab41856b61ac5c0f3c4ac0e203f320 by Miss Islington (bot) in branch '3.8': bpo-36763, doc: Add links in the new C API init doc (GH-15433) https://github.com/python/cpython/commit/9cbdce3917ab41856b61ac5c0f3c4ac0e203f320 --

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 120b707a6d43452e067daa55a8fdca69f9424abc by Victor Stinner in branch 'master': bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) https://github.com/python/cpython/commit/120b707a6d43452e067daa55a8fdca69f9424abc --

[issue36763] Implementation of the PEP 587

2019-08-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +15128 pull_request: https://github.com/python/cpython/pull/15434 ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1beb7c3de9c3d0e802e4267a11d937e8f024d661 by Victor Stinner in branch 'master': bpo-36763, doc: Add links in the new C API init doc (GH-15433) https://github.com/python/cpython/commit/1beb7c3de9c3d0e802e4267a11d937e8f024d661 --

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15127 pull_request: https://github.com/python/cpython/pull/15433 ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
STINNER Victor added the comment: > The first doc should mention somewhere the new doc. Done in PR 15433. -- ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
STINNER Victor added the comment: > _PySys_ReadPreInitOptions() code should be moved somewhere closer to > PyConfig_Read(). Done in PR 15431. -- ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15126 pull_request: https://github.com/python/cpython/pull/15431 ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread miss-islington
miss-islington added the comment: New changeset a6427cb2a279c4125dc26d468bcbb3374cdc5f41 by Miss Islington (bot) in branch '3.8': bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423) https://github.com/python/cpython/commit/a6427cb2a279c4125dc26d468bcbb3374cdc5f41

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-08-23 Thread Benoit Hudson
Change by Benoit Hudson : -- keywords: +patch pull_requests: +15125 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15428 ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 3842f2997fbd4dc840986aad2bb94656815e243b by Victor Stinner in branch 'master': bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423) https://github.com/python/cpython/commit/3842f2997fbd4dc840986aad2bb94656815e243b --

[issue36763] Implementation of the PEP 587

2019-08-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +15124 pull_request: https://github.com/python/cpython/pull/15427 ___ Python tracker ___

[issue37757] TargetScopeError not raised for comprehension scope conflict

2019-08-23 Thread Guido van Rossum
Guido van Rossum added the comment: The decision has been made to get rid of TargetScopeError and instead just use SyntaxError. PEP 572 was updated already. We're just waiting for someone (Serhiy?) to review Nick's patch, PR #15131. -- ___ Python

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-08-23 Thread Benoit Hudson
New submission from Benoit Hudson : On OSX, with --enable-shared, if you shut down python and reinitialize, you can get a crash. Repro steps: see attached crashy.c gcc -I. -I ../Include/ -L. crashy.c -lpython3.9 ./a.out On OSX, with --enable-shared, you get a crash! On other platforms

[issue31727] FTP_TLS errors when use certain subcommands

2019-08-23 Thread Neha Reddy
Neha Reddy added the comment: We faced the same issue while trying to copy files to an FTPS server. We are trying to connect to a Filezilla server. The type of encryption we are using for the FTPS is 'Require explicit FTP over TLS'. There are the errors that my colleague and I had while

[issue23878] Missing sanity checks for various C library function calls...

2019-08-23 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 2.7, Python 3.7, Python 3.8, Python 3.9 -Python 3.4 ___ Python tracker ___

[issue23878] Missing sanity checks for various C library function calls...

2019-08-23 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +15123 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15424 ___ Python tracker ___

[issue36763] Implementation of the PEP 587

2019-08-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15122 pull_request: https://github.com/python/cpython/pull/15423 ___ Python tracker ___

[issue34898] add mtime argument to gzip.compress

2019-08-23 Thread Daniel Himmelstein
Daniel Himmelstein added the comment: Any reason not to also expose mtime in the gzip.open API? -- nosy: +dhimmel ___ Python tracker ___

[issue26024] Non-ascii Windows locale names

2019-08-23 Thread Vidar Fauske
Vidar Fauske added the comment: Thanks. Note that the failing with ` locale.setlocale(locale.LC_ALL, locale.getdefaultlocale())` I mentioned above is a different problem, that is tracked in a much older issue: https://bugs.python.org/issue10466 --

[issue37454] Clarify docs for math.log1p()

2019-08-23 Thread Tim Peters
Tim Peters added the comment: > Sometimes you guys make me feel dumb as a rock. I expect we all do that favor for each other at times ;-) -- ___ Python tracker ___

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-23 Thread Brett Slatkin
Brett Slatkin added the comment: Maybe we should just roll back https://bugs.python.org/issue34687 to fix both issues? Otherwise asyncio will be broken on Windows in 3.8. Is general API stability more important than performance? -- ___ Python

[issue10466] locale.py resetlocale throws exception on Windows (getdefaultlocale returns value not usable in setlocale)

2019-08-23 Thread Vidar Fauske
Vidar Fauske added the comment: Note that this is still an issue on Windows: >>> import locale >>> locale.getdefaultlocale() ('en_US', 'cp1252') >>> locale.setlocale(locale.getdefaultlocale()) Error: unsupported locale setting -- components: +Windows nosy: +paul.moore, steve.dower,

[issue37930] make fails when compiling Python 2.6 from source (posixmodule.c)

2019-08-23 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Hi Oguz, Sadly Python 2.6.8 is not supported anymore -- nosy: +pablogsal ___ Python tracker ___

[issue14465] xml.etree.ElementTree: add feature to prettify XML output

2019-08-23 Thread Stefan Behnel
Change by Stefan Behnel : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue14465] xml.etree.ElementTree: add feature to prettify XML output

2019-08-23 Thread Stefan Behnel
Stefan Behnel added the comment: New changeset b5d3ceea48c181b3e2c6c67424317afed606bd39 by Stefan Behnel in branch 'master': bpo-14465: Add an indent() function to xml.etree.ElementTree to pretty-print XML trees (GH-15200)

[issue37830] continue and break in finally with return in try results with segfault

2019-08-23 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I think PR 15320 should be merge as soon as possible at least to fix the segfault and stop the release blocker. Anything else can wait IMHO -- ___ Python tracker

[issue37055] Numerous warnings with blake2 module

2019-08-23 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Related to this, the blake2 function (declared as static inline) is not used, which makes the Solaris and compilers unhappy. Patch for reference: --- a/Modules/_blake2/impl/blake2.h +++ b/Modules/_blake2/impl/blake2.h @@ -169,11 +169,6 @@

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-23 Thread Yury Selivanov
Yury Selivanov added the comment: Andrew, can you fix ctrl-c/windows issue? I'm basically afk until monday. And we're not going to do anything about add_signal_handler in 3.8. -- ___ Python tracker

[issue29535] datetime hash is deterministic in some cases

2019-08-23 Thread Ashwin Ramaswami
Ashwin Ramaswami added the comment: Oh, that PR is already there in PR 15269, great! -- ___ Python tracker ___ ___

[issue36344] install_certificates.command too complicated

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: This is marked as a release blocker. The last 3.8 beta is scheduled for Monday. Please decide how to proceed ASAP. -- nosy: +benjamin.peterson, lukasz.langa priority: deferred blocker -> release blocker ___ Python

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: This is marked as a release blocker. The last beta is scheduled for Monday. Please decide how to proceed ASAP. -- priority: deferred blocker -> release blocker ___ Python tracker

[issue35998] test_asyncio: test_start_tls_server_1() TimeoutError on Fedora 29

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: Should this be closed? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37757] TargetScopeError not raised for comprehension scope conflict

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: This is marked as a release blocker. The last beta is scheduled for Monday. Please decide how to proceed ASAP. -- nosy: +lukasz.langa priority: deferred blocker -> release blocker ___ Python tracker

[issue37055] Numerous warnings with blake2 module

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: This is marked as a release blocker. The last beta is scheduled for Monday. Please decide how to proceed ASAP. -- nosy: +lukasz.langa priority: deferred blocker -> release blocker ___ Python tracker

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread Bruno Oliveira
Change by Bruno Oliveira : -- nosy: +Bruno Oliveira ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34155] email.utils.parseaddr mistakenly parse an email

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: Downgraded the severity since 3.6 - 3.9 are merged. -- nosy: +lukasz.langa priority: deferred blocker -> critical ___ Python tracker ___

[issue37549] os.dup() fails for standard streams on Windows 7

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: This is marked as a release blocker. The last beta is scheduled for Monday. Please decide how to proceed ASAP. -- ___ Python tracker ___

[issue37830] continue and break in finally with return in try results with segfault

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: This is marked as a release blocker. The last beta is scheduled for Monday. Please decide how to proceed ASAP. -- ___ Python tracker ___

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: Please fix this ASAP, last 3.8 beta is scheduled for Monday. -- ___ Python tracker ___ ___

[issue37428] SSLContext.post_handshake_auth implicitly enables cert validation

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: Should this be closed? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37440] httplib should enable post-handshake authentication for TLS 1.3

2019-08-23 Thread Łukasz Langa
Łukasz Langa added the comment: Should this be closed? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29535] datetime hash is deterministic in some cases

2019-08-23 Thread Ashwin Ramaswami
Ashwin Ramaswami added the comment: Makes sense, thanks for the explanation. The risk is that if there is code that, say, converts a POST dictionary to a dictionary with numeric keys, that code could be exploited. Creating a non-deterministic hash doesn't necessarily preclude hash(x) = x

[issue37930] make fails when compiling Python 2.6 from source (posixmodule.c)

2019-08-23 Thread Oguz_eren
Change by Oguz_eren : Added file: https://bugs.python.org/file48558/config.log ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34521] Multiple tests (test_socket, test_multiprocessing_*) fail due to incorrect recvmsg(2) buffer lengths, causing failures on FreeBSD CURRENT

2019-08-23 Thread STINNER Victor
STINNER Victor added the comment: "AMD64 FreeBSD CURRENT Shared 2.7 #159 is complete: Success" https://buildbot.python.org/all/#/builders/169/builds/159 The FreeBSD 2.7 buildbot is back to green, I close the issue. Thanks everyone was helped to get these issues to be fixed! --

  1   2   >