[issue37259] Missing Doc/whatsnew/3.9.rst file

2019-06-12 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. Fixed in PR 14040 (3a2883c313be3aff34c61a42e586f8507ba5945f) in master. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue37248] support conversion of `func(**{} if a else b)`

2019-06-12 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: https://bugs.python.org/issue36541 already tracks it. So can this be closed as a duplicate? -- ___ Python tracker ___

[issue37257] obmalloc: stop simple arena thrashing

2019-06-12 Thread Tim Peters
Tim Peters added the comment: New changeset d1c85a27ea9fe70163cad3443d5e534d94f08284 by Tim Peters in branch 'master': bpo-37257: obmalloc: stop simple arena thrashing (#14039) https://github.com/python/cpython/commit/d1c85a27ea9fe70163cad3443d5e534d94f08284 -- __

[issue37198] _parse_localename fail to parse 'en_IL'

2019-06-12 Thread Eryk Sun
Eryk Sun added the comment: Windows prefers locale names based on RFC 4646 language tags, which use a hyphen instead of an underscore (e.g. "en-UK"). This name format doesn't include an encoding. The C runtime (not the Windows API) makes one exception to support ".utf8" and ".utf-8" (e.g. "e

[issue37257] obmalloc: stop simple arena thrashing

2019-06-12 Thread Tim Peters
Change by Tim Peters : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue37136] Travis CI: Documentation tests fails with Sphinx 2.1

2019-06-12 Thread Ned Deily
Ned Deily added the comment: The problem with the duplicate `.. module:: email.message` was fixed about 10 days ago with PR 13742 and backports; the fix adds a :noindex: to the duplicate entry. I'm guessing that people seeing this problem had upgraded to Sphinx 2.1 but had not recently done

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

2019-06-12 Thread Ned Deily
Ned Deily added the comment: New changeset 905e19a9bf9afd6439ea44fc6a4f3c8631750d6d by Ned Deily (Makdon) in branch 'master': bpo-37216: update version to 3.9 in mac using document (GH-13966) https://github.com/python/cpython/commit/905e19a9bf9afd6439ea44fc6a4f3c8631750d6d -- _

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

2019-06-12 Thread Ned Deily
Ned Deily added the comment: Thanks for contributing the PRs! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue37227] Wrong parse long argument

2019-06-12 Thread paul j3
Change by paul j3 : -- nosy: +paul.j3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue37245] Azure Pipeline 3.8 CI: multiple tests hung and timed out on macOS 10.13

2019-06-12 Thread Ned Deily
Ned Deily added the comment: FWIW, I tried reproducing with 3.8 at 996e52623af3854552d41751e0c2522bc0a7e84f (the PR 14000 checkin) on both a current 10.14.5 Mojave system and on a 10.13.6 High Sierra system (the version used in the failed Azure test) and did not see any unusual failures. I

[issue37250] C files generated by Cython set tp_print to NULL: PyTypeObject.tp_print removed, replaced with tp_vectorcall_offset

2019-06-12 Thread Jeroen Demeyer
Jeroen Demeyer added the comment: > This is a terrible idea, FWIW. Please don't do this. Why not? It's a simple pragmatic solution that fixes an actual problem at essentially no cost to CPython. You're right of course that Cython shouldn't set tp_print to 0 on Python 3. But I don't think th

<    1   2   3