[issue30717] Add unicode grapheme cluster break algorithm

2020-01-05 Thread Manish
Manish added the comment: Oh, also, if y'all are fine with binding to Rust (through a C ABI) I'd love to help y'all use unicode-segmentation, which is much less work that pulling in ICU. Otherwise if y'all have implementation questions I can answer them. This spec is kinda tricky to implemen

[issue38907] http.server (command) fails to bind dual-stack on Windows

2020-01-05 Thread Jason R. Coombs
Jason R. Coombs added the comment: New changeset ee94bdb0598f9bc47d6a49e58fffc97aa617be96 by Jason R. Coombs in branch 'master': bpo-38907: In http.server script, restore binding to IPv4 on Windows. (GH-17851) https://github.com/python/cpython/commit/ee94bdb0598f9bc47d6a49e58fffc97aa617be96

[issue38907] http.server (command) fails to bind dual-stack on Windows

2020-01-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +17275 pull_request: https://github.com/python/cpython/pull/17854 ___ Python tracker ___ __

[issue39228] traceback.FrameSummary does not handle exceptions from `repr()`

2020-01-05 Thread daniel hahler
New submission from daniel hahler : Exceptions within `__repr__` methods of captured locals (e.g. via the `capture_locals` argument of `TracebackException`) are not handled: ``` import traceback class CrashingRepr: def __repr__(self): raise RuntimeError("crash") traceback.FrameS

[issue39228] traceback.FrameSummary does not handle exceptions from `repr()`

2020-01-05 Thread daniel hahler
Change by daniel hahler : -- keywords: +patch pull_requests: +17276 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17855 ___ Python tracker ___ __

[issue39229] library/functions.rst causes translated builds to fail

2020-01-05 Thread Rafael Fontenelle
New submission from Rafael Fontenelle : Documentation file library/functions.rst has a syntax issue that when building documentation with warnings as errors, the following message appears: cpython/Doc/library/functions.rst:: WARNING: inconsistent term references in translated message. origina

[issue39229] library/functions.rst causes translated builds to fail

2020-01-05 Thread Rafael Fontenelle
Change by Rafael Fontenelle : -- keywords: +patch pull_requests: +17277 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17857 ___ Python tracker __

[issue38623] Python documentation should mention how to find site-packages

2020-01-05 Thread Vinay Keerthi
Vinay Keerthi added the comment: Just chiming in my opinion, the site-packages directory is also dependent on venv, correct? So would explaining where it is at a global install level be much use? Or do you mean explaining where site-packages is even for a venv? I could take this up, if some

[issue39229] library/functions.rst causes translated builds to fail

2020-01-05 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +mdk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue38597] C Extension import limit

2020-01-05 Thread Stefan Behnel
Stefan Behnel added the comment: Cython doesn't interfere with the C compiler setup in any way, that's left to distutils/setuptools (and the user). -- ___ Python tracker ___ _

[issue38623] Python documentation should mention how to find site-packages

2020-01-05 Thread Inada Naoki
Inada Naoki added the comment: There is a document about it in Doc/library/site.rst already. I'm not sure this should be documented in the tutorial. -- nosy: +inada.naoki ___ Python tracker

[issue38623] Python documentation should mention how to find site-packages

2020-01-05 Thread Inada Naoki
Change by Inada Naoki : -- pull_requests: +17278 pull_request: https://github.com/python/cpython/pull/17858 ___ Python tracker ___ _

[issue39227] OverflowError in len(range(2**63))

2020-01-05 Thread Mark Dickinson
Mark Dickinson added the comment: Duplicate of #12159? -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing

[issue39227] OverflowError in len(range(2**63))

2020-01-05 Thread Mark Dickinson
Mark Dickinson added the comment: (See also #21444) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

<    1   2