[issue39524] Escape sequences in doc string of ast._pad_whitespace

2020-02-03 Thread mpheath
Change by mpheath : -- keywords: +patch pull_requests: +17712 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/18340 ___ Python tracker _

[issue39539] Improve Keccak support in hashlib including KangarooTwelve

2020-02-03 Thread Mariatta
Mariatta added the comment: Added hashlib module experts. -- nosy: +Mariatta, christian.heimes, gregory.p.smith ___ Python tracker ___

[issue39514] http://sphinx.pocoo.org/

2020-02-03 Thread Berker Peksag
Berker Peksag added the comment: My PR has been merged and I've verified that the link is now point to https://www.sphinx-doc.org/. Closing this as 'fixed'. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python t

[issue39524] Escape sequences in doc string of ast._pad_whitespace

2020-02-03 Thread mpheath
Change by mpheath : -- pull_requests: +17713 pull_request: https://github.com/python/cpython/pull/18341 ___ Python tracker ___ ___ P

[issue39539] Improve Keccak support in hashlib including KangarooTwelve

2020-02-03 Thread Gregory P. Smith
Gregory P. Smith added the comment: Christian added the SHA3 support so is probably best to comment on this. The way our hashlib code is structured we always use the https://github.com/python/cpython/tree/master/Modules/_sha3 implementation rather than OpenSSL for these algorithms due to the

[issue39549] The reprlib.Repr type should permit the “fillvalue” to be set by the user

2020-02-03 Thread Alexander Böhn
New submission from Alexander Böhn : Currently, the `reprlib.recursive_repr(…)` decorator allows a “fillvalue” parameter to be specified by the user. This is a string value that is used as a placeholder when calculating an objects’ repr – in the case of `recursive_repr(…)` the “fillvalue” defa

[issue39524] Escape sequences in doc string of ast._pad_whitespace

2020-02-03 Thread mpheath
mpheath added the comment: I have submitted 2 Pull Requests. One for 3.9 and the other for 3.8. Only way I knew was to create 2 separate branches to checkout, linked to version tags to get the correct patches for ast.py. Hope is OK. -- ___ Python

[issue39524] Escape sequences in doc string of ast._pad_whitespace

2020-02-03 Thread mpheath
Change by mpheath : -- pull_requests: +17714 pull_request: https://github.com/python/cpython/pull/18342 ___ Python tracker ___ ___ P

[issue39549] The reprlib.Repr type should permit the “fillvalue” to be set by the user

2020-02-03 Thread Alexander Böhn
Change by Alexander Böhn : -- keywords: +patch pull_requests: +17716 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18343 ___ Python tracker ___ __

[issue14074] argparse allows nargs>1 for positional arguments but doesn't allow metavar to be a tuple

2020-02-03 Thread Cyker Way
Cyker Way added the comment: Tuple support is documented: https://github.com/python/cpython/commit/98047eb806227f11212f6a42c242030a51964e30#diff-9c4a053d29149ba40370fb3e34faR1059 https://docs.python.org/3/library/argparse.html#metavar > Providing a tuple to ``metavar`` specifies a diff

[issue39540] Logging docs don't address the creation of multiple loggers when a hierarchy is provided

2020-02-03 Thread Vinay Sajip
Vinay Sajip added the comment: That's an internal detail. In fact loggers aren't created for all loggers in the hierarchy - PlaceHolder objects are created internally for hierarchy ancestors, and converted to loggers if needed. The printout from your linked Stack Overflow question shows this

[issue39545] await is not supported in f-string in 3.6

2020-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, await was recognized only in asynchronous functions. f-strings involve a separate parsing step for subexpressions, and it is not aware that it is in an asynchronous function. Seems the fix was unintentional, but it should documented in any case.

<    1   2