[issue36432] Running python test suite fails on macOS 10.14.4 with resource.RLIMIT_STACK error

2019-04-11 Thread Dmitrii Pasechnik
Change by Dmitrii Pasechnik : -- nosy: +dimpase ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue36605] make tags should also parse Modules/_io/*.c and Modules/_io/*.h

2019-04-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset 21a74a9d77c5ac628808b9faace18b824ca056f7 by Victor Stinner in branch 'master': bpo-36605: make tags: parse Modules/_io directory (GH-12789) https://github.com/python/cpython/commit/21a74a9d77c5ac628808b9faace18b824ca056f7 -- _

[issue36389] Add gc.enable_object_debugger(): detect corrupted Python objects in the GC

2019-04-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9e23f0a27cb8bf6e4ea1d2aef36a91502282bbc9 by Victor Stinner in branch '3.7': [3.7] bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770) (GH-12788) https://github.com/python/cpython/commit/9e23f0a27cb8bf6e4ea1d2aef36a91

[issue20582] socket.getnameinfo() does not document flags

2019-04-11 Thread miss-islington
miss-islington added the comment: New changeset 3993ccb6820d4239ce3d9e1c5d31f13b86eb by Miss Islington (bot) (Emmanuel Arias) in branch 'master': bpo-20582: add link for manpage for flags on getnameinfo() (GH-11977) https://github.com/python/cpython/commit/3993ccb6820d4239ce3d9e1c5d31f13b

[issue36602] Recursive directory list with pathlib.Path.iterdir

2019-04-11 Thread Paul Ganssle
Paul Ganssle added the comment: > Is the behaviour you're proposing any different from using Path.rglob('*')? I believe `rglob("*")` is eager, while `iterdir` is lazy. @Epic_Wink: > This would be trivial to implement as 'iterdir' can simply yield from > subdirectories' 'iterdir'. One thing

[issue36608] Replace bundled pip and setuptools with a downloader in the ensurepip module

2019-04-11 Thread Sviatoslav Sydorenko
New submission from Sviatoslav Sydorenko : Hi, I've noticed that there's an idea to not pollute Git tree with vendored blobs. In particular, `ensurepip` is one of the components doing this. Such a wish was expressed here: https://bugs.python.org/issue35277#msg330098 So I thought I'd take a s

[issue36608] Replace bundled pip and setuptools with a downloader in the ensurepip module

2019-04-11 Thread Sviatoslav Sydorenko
Change by Sviatoslav Sydorenko : -- keywords: +patch pull_requests: +12719 stage: -> patch review ___ Python tracker ___ ___ Python

[issue17267] datetime.time support for '+' and '-'

2019-04-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: It seems that there was interest in this enhancement a few years ago. @joar, would you be able to convert your patch to a GitHub pull request on the master branch? Thanks! -- nosy: +cheryl.sabella versions: +Python 3.8 -Python 3.4

[issue26205] Inconsistency concerning nested scopes

2019-04-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: Assigning to @Mariatta for the sprints. -- assignee: docs@python -> Mariatta nosy: +Mariatta, cheryl.sabella versions: +Python 3.7, Python 3.8 -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker

[issue34805] Explicitly specify `MyClass.__subclasses__()` returns classes in definition order

2019-04-11 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue29288] Lookup Error while importing idna from a worker thread

2019-04-11 Thread James Saryerwinnie
James Saryerwinnie added the comment: I ran into this as well also using the embedded distribution for windows (https://docs.python.org/3/using/windows.html#the-embeddable-package). socket.getaddrinfo() will encode unicode hostnames using idna and trigger this error if you call this function

[issue16177] Typing left parenthesis in IDLE causes intermittent Cocoa Tk crash on OS X

2019-04-11 Thread Tom Goddard
Tom Goddard added the comment: This Mac Tk bug was supposedly fixed in 2016 or 2017. Details are in the following Tk ticket. http://core.tcl.tk/tk/tktview/c84f660833546b1b84e7 The previous URL to the Tk ticket no longer works. In case the above URL also goes bad, the id number for

[issue36602] Recursive directory list with pathlib.Path.iterdir

2019-04-11 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: > I believe `rglob("*")` is eager, while `iterdir` is lazy. rglob and glob also return a generator. Slightly related, pathlib.walk was proposed in the past in python-ideas : https://mail.python.org/pipermail/python-ideas/2017-April/045398.html ---

[issue36596] tarfile module considers anything starting with 512 bytes of zero bytes to be a valid tar file

2019-04-11 Thread Eitan Adler
Change by Eitan Adler : -- nosy: +eitan.adler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue34652] never enable lchmod on Linux

2019-04-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: We can take a PR to fix that. On Thu, Apr 11, 2019, at 04:42, Joshua Root wrote: > > Joshua Root added the comment: > > The follow-up fix (AC_CHECK_FUNC -> AC_CHECK_FUNCS) still needs to be > backported to 2.7. Currently the lack of it causes lchmod to

[issue36457] functools.singledispatchmethod interacts poorly with subclasses

2019-04-11 Thread Tim Mitchell
Tim Mitchell added the comment: Attached is an improved implementation that does not use a module level register() function. It makes the code in the original post work as expected: The `@BaseVisitor.visit.register()` decorator on the `AVisitor` class does not modify the base class dispatc

[issue36604] Add recipe to itertools

2019-04-11 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thank you for the suggestion and the nice work. I'm going to decline adding this to our docs because it isn't in the spirit of the other recipes (reasonably common task, reasonably simple, and/or showing off effective combinations of the other itertools).

[issue36591] Should be a typing.UserNamedTuple

2019-04-11 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: -> levkivskyi nosy: +levkivskyi ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36599] doctest document says dict order is unstable

2019-04-11 Thread Raymond Hettinger
Raymond Hettinger added the comment: Go ahead and change it to: "For example, when printing a set, Python doesn’t guarantee that the else will be printed in any particular order," -- nosy: +rhettinger ___ Python tracker

[issue36599] doctest document says dict order is unstable

2019-04-11 Thread Inada Naoki
Inada Naoki added the comment: Oh, #34839 had fixed this already. It was not backported to 3.7 yet. -- ___ Python tracker ___ ___ P

[issue34839] doctest: Change example under warnings section

2019-04-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +12720 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36599] doctest document says dict order is unstable

2019-04-11 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> doctest: Change example under warnings section ___ Python tracker __

[issue34839] doctest: Change example under warnings section

2019-04-11 Thread miss-islington
miss-islington added the comment: New changeset a910c2c6f3542b61f084de2ece0d8dab09c5a0fa by Miss Islington (bot) in branch '3.7': bpo-34839: Add a 'before 3.6' in the section 'warnings' of doctest (GH-9736) https://github.com/python/cpython/commit/a910c2c6f3542b61f084de2ece0d8dab09c5a0fa --

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

2019-04-11 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +12721 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

<    1   2