[issue41192] Some audit events are undocumented

2020-10-08 Thread Saiyang Gou
Saiyang Gou added the comment: Hi Steve. If you had time could you review PR 21308, PR 21310 and PR 21322? Thanks! -- ___ Python tracker ___ _

[issue23984] Documentation error: Descriptors

2020-10-08 Thread Raymond Hettinger
Change by Raymond Hettinger : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue26680] Incorporating float.is_integer into Decimal

2020-10-08 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks. I'm hoping that this will easy now the most of the details have already been worked out. -- ___ Python tracker ___ _

[issue39450] unittest TestCase shortDescription does not strip whitespace

2020-10-08 Thread Chris Jerdonek
Chris Jerdonek added the comment: I believe this also resolves issue 30181 (which was the same issue). -- nosy: +chris.jerdonek resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker

[issue30181] Correct the parsing of a test case docstring.

2020-10-08 Thread Chris Jerdonek
Chris Jerdonek added the comment: I believe this was addressed by issue 39450, which I think was technically a duplicate of this issue. -- nosy: +chris.jerdonek ___ Python tracker __

[issue41894] UnicodeDecodeError during load failure in non-UTF-8 locale

2020-10-08 Thread Inada Naoki
Inada Naoki added the comment: Yes, please. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue41970] test_lib2to3 fails since Python 3.9

2020-10-08 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +21592 pull_request: https://github.com/python/cpython/pull/22609 ___ Python tracker ___

[issue41877] Check against misspellings of assert etc. in mock

2020-10-08 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: See also below issues for previous discussion on making the assert helpers as top level functions : https://bugs.python.org/issue24651 https://bugs.python.org/issue30949 -- nosy: +cjw296, lisroach, mariocj89, rbcollins, xtreak ___

[issue24538] os.setxattr PermissionError on panfs propagates up causing `copystat`, `copytree`, and `pip install .` to fail unhepfully

2020-10-08 Thread Olexa Bilaniuk
Olexa Bilaniuk added the comment: Yes, it may be closed. The fix was merged in time to make it into Python 3.7.4 and 3.8.0, and solved the problems we were facing with fancy filesystem xattrs on read-only files. -- ___ Python tracker

[issue41972] bytes.find consistently hangs in a particular scenario

2020-10-08 Thread Tim Peters
Tim Peters added the comment: BTW, this initialization in the FASTSEARCH code appears to me to be a mistake: skip = mlast - 1; That's "mistake" in the sense of "not quite what was intended, and so confusing", not in the sense of "leads to a wrong result". I believe `skip` should be init

[issue41877] Check against misspellings of assert etc. in mock

2020-10-08 Thread Vedran Čačić
Vedran Čačić added the comment: Of course, that's why I wrote "my" in quotes above. It's not my solution, it's the idea that many people independently had. Because it is _the_ solution, of course. :-] I'd just like to point out in the above thread (first link you provided), how _many_ people

[issue41978] numpy, scipy packages failed to install via pip - Windows 10 Pro 64 bit

2020-10-08 Thread Thomas M. Alldread
New submission from Thomas M. Alldread : Several attempts to install numpy/scipy packages failed. Pip reported pages of error information. Reverting back to version 3.8.5 resolved the issue using the exact same procedure. -- components: Extension Modules, Installation, Windows message

[issue26389] Expand traceback module API to accept just an exception as an argument

2020-10-08 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch nosy: +ZackerySpytz nosy_count: 6.0 -> 7.0 pull_requests: +21593 pull_request: https://github.com/python/cpython/pull/22610 ___ Python tracker ___

[issue41978] numpy, scipy packages failed to install via pip - Windows 10 Pro 64 bit

2020-10-08 Thread Jürgen Gmach
Jürgen Gmach added the comment: While e.g. numpy already shows Python 3.9 support on their GitHub repository ( https://github.com/numpy/numpy/blob/master/setup.py ), there is no Python 3.9 compatible package on PyPI yet ( https://pypi.org/project/numpy/#files ). I guess you have to wait a bit

[issue41979] PEG parser doesn't accept extended unpacking in with statement

2020-10-08 Thread Joshua Oreman
New submission from Joshua Oreman : On Python 3.9.0 with the new PEG parser, the following statement produces a SyntaxError: with contextlib.nullcontext(range(1, 5)) as (first, *rest, last): print(first, rest, last) On 3.8.x, or 3.9.0 with -X oldparser, it succeeds and prints "1 [2, 3] 4"

<    1   2