[issue37461] email.parser.Parser hang

2019-07-14 Thread Alex Gaynor
Change by Alex Gaynor : -- nosy: +alex ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue37593] ast.arguments has confusing args/posonlyargs ordering

2019-07-14 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +levkivskyi, pablogsal, serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list m

[issue28009] core logic of uuid.getnode() needs refresh

2019-07-14 Thread Tal Einat
Tal Einat added the comment: >> The current code and proposed changes use 'netstat -ia' to find the node >> however if netstat needs to perform a reverse DNS query to resolve some >> interfaces this makes using uuid1 *really* slow especially when reverse DNS >> queries aren't set up correctl

[issue37555] _CallList.__contains__ doesn't always respect ANY.

2019-07-14 Thread Elizabeth Uselton
Elizabeth Uselton added the comment: Hi there, I completely missed that this had caused so much interesting discussion. I've added a regression test that shows the bug I was encountering, which seems to be related to spec_set bypassing _Call's overwritten __eq__ and so not respecting ANY h

[issue37594] re does not honor matching trailing multiple periods

2019-07-14 Thread brent s.
brent s. added the comment: "'\.' is an invalid escape sequence. Could you try it with a raw string?" Well, a valid regex escape, but right. Point taken. I am under the impression, however, that given the value in ptrn (in example.py) is already a string, it should be interpreted as a raw st

[issue37594] re does not honor matching trailing multiple periods

2019-07-14 Thread brent s.
brent s. added the comment: Oh for pete's sake. I wish I could edit comments. Eric- To make it clear: * VERSION: 2.7.16 (default, Mar 11 2019, 18:59:25) [GCC 8.2.1 20181127] PATTERN: \.*$ BEFORE: a.b WITHOUT: a.b DUMMY: a.bX AFTER: a.b. RSTRIP: a.b == BEFORE: a.b. WITHOUT: a.b DUMMY:

[issue34543] _struct.Struct: calling functions without calling __init__ results in SystemError

2019-07-14 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +14573 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14777 ___ Python tracker ___ __

[issue37594] re does not honor matching trailing multiple periods

2019-07-14 Thread Eric V. Smith
Eric V. Smith added the comment: Sorry. '\.' will be invalid in the future. I got ahead of myself. $ python3 -Werror -q >>> '\.' File "", line 1 SyntaxError: invalid escape sequence \. Not that it would have affected your issue, so I apologize for the red herring. But "switch to raw strin

[issue34543] _struct.Struct: calling functions without calling __init__ results in SystemError

2019-07-14 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 2.7, Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bug

[issue37593] ast.arguments has confusing args/posonlyargs ordering

2019-07-14 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +14574 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14778 ___ Python tracker __

[issue37593] ast.arguments has confusing args/posonlyargs ordering

2019-07-14 Thread miss-islington
miss-islington added the comment: New changeset cd6e83b4810549c308ab2d7315dbab526e35ccf6 by Miss Islington (bot) (Pablo Galindo) in branch 'master': bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) https://github.com/python/cpython/c

[issue37593] ast.arguments has confusing args/posonlyargs ordering

2019-07-14 Thread miss-islington
Change by miss-islington : -- pull_requests: +14575 pull_request: https://github.com/python/cpython/pull/14779 ___ Python tracker ___ __

[issue37593] ast.arguments has confusing args/posonlyargs ordering

2019-07-14 Thread miss-islington
miss-islington added the comment: New changeset cf9a63c6c7e19f3d27cf3b5731d02cc216ef3dd1 by Miss Islington (bot) in branch '3.8': bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) https://github.com/python/cpython/commit/cf9a63c6c7e19

[issue37593] ast.arguments has confusing args/posonlyargs ordering

2019-07-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Thanks for the report, Benjamin! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue34749] improve performance of binascii.a2b_base64()

2019-07-14 Thread Petr Viktorin
Change by Petr Viktorin : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37595] Python 3.7.4 does not build on Raspbian Buster

2019-07-14 Thread Kal Sze
New submission from Kal Sze : Like the title says. Tried building with these `configure` options: --enable-optimizations \ --with-lto \ --enable-shared \ --enable-loadable-sqlite-extensions \ --enable-ipv6 \ --with-system-expat \ --with-system-ffi \ --with-syste

[issue37461] email.parser.Parser hang

2019-07-14 Thread Nam Nguyen
Change by Nam Nguyen : -- nosy: +Nam.Nguyen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue37496] Support annotations in signature strings.

2019-07-14 Thread Giovanni Cappellotto
Change by Giovanni Cappellotto : -- nosy: +potomak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue29753] Ctypes Packing Bitfields Incorrectly - Linux

2019-07-14 Thread hai shi
Change by hai shi : -- nosy: +shihai1991 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue37555] _CallList.__contains__ doesn't always respect ANY.

2019-07-14 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks Elizabeth for the test. The regression test seems to be same as the case noted by Serhiy that Foo.__eq__ is not returning NotImplemented so that ANY.__eq__ can be executed. Below would be the correct implementation that passes. The actual

<    1   2