[issue39601] brace escapes are not working in formatted string literal format specifications

2020-02-12 Thread Vedran Čačić
Vedran Čačić added the comment: I can't help with the issue itself (though I must say that I philosophically don't believe in "sailed off ships" -- in the limit, Python must be the best it can be, though it can take decades to get there), but I can help you with the error message. It simply t

[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +17872 pull_request: https://github.com/python/cpython/pull/18498 ___ Python tracker ___ __

[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: New changeset 597ebed748d0b0c061f8c108bd98270d103286c1 by Andy Lester in branch 'master': closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497) https://github.com/python/cpython/commit/597ebed748d0b0c061f8c108bd98270d103286c1 -- nos

[issue39621] md5_compress() in Modules/md5module.c can take a const buf

2020-02-12 Thread miss-islington
miss-islington added the comment: New changeset 669981b3b14dd16dec42089d6ac8d6449fde8abd by Miss Islington (bot) in branch '3.8': closes bpo-39621: Make buf arg to md5_compress be const. (GH-18497) https://github.com/python/cpython/commit/669981b3b14dd16dec42089d6ac8d6449fde8abd --

[issue39620] PyObject_GetAttrString and tp_getattr do not agree

2020-02-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It was reverted because it is backward incompatible change. It breaks a code which assigns to the tp_getattr field without explicit type cast to getattrfunc. -- nosy: +serhiy.storchaka ___ Python tracker

[issue39601] brace escapes are not working in formatted string literal format specifications

2020-02-12 Thread JitterMan
JitterMan added the comment: Ah, that make sense. Thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39567] Add audit for os.walk(), os.fwalk(), Path.glob() and Path.rglob()

2020-02-12 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +17873 pull_request: https://github.com/python/cpython/pull/18499 ___ Python tracker ___

[issue39567] Add audit for os.walk(), os.fwalk(), Path.glob() and Path.rglob()

2020-02-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, I did not know about the audit-event directive. Thanks Karthikeyan. As for backporting this to 3.8 I left it on to the RM. -- nosy: +lukasz.langa resolution: fixed -> stage: resolved -> patch review status: closed -> open _

[issue39622] KeyboardInterrupt is ignored when await asyncio.sleep(0)

2020-02-12 Thread Zhibin Dong
New submission from Zhibin Dong : As shown in the code, when 0 is passed to asyncio.sleep function, sometimes the program does not exit when I press . I must press again to close the program. However, when a number, such as 0.01, which is bigger than 0, is passed to the sleep function, the p

[issue39184] Many command execution functions are not raising auditing events

2020-02-12 Thread Steve Dower
Steve Dower added the comment: New changeset 7514f4f6254f4a2d13ea8e5632a8e5f22b637e0b by Saiyang Gou in branch 'master': bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resource`, `shutil`, `signal`, `syslog` (GH-18407) https://github.com/python/cpython/commit/7514f4f6

[issue21016] trace: $prefix and $exec_prefix improperly replaced on Fedora

2020-02-12 Thread Ben Boeckel
Ben Boeckel added the comment: Thanks! Should I file a new issue for the other (less urgent) problem mentioned at the bottom or is it not really worth fixing? > It also erroneously replaces things like '$prefixpath'. It should probably do > split the path on the path separators and only rep

<    1   2