[issue39530] Documentation about comparisons between numeric types is misleading

2020-02-23 Thread Mark Dickinson
Change by Mark Dickinson : -- keywords: +patch pull_requests: +17980 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18615 ___ Python tracker ___

[issue38657] Clarify numeric padding behavior in string formatting

2020-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: It looks as though this has been addressed, and can be closed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue5996] abstract class instantiable when subclassing built-in types

2020-02-23 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: -mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39599] ABI breakage between Python 3.7.4 and 3.7.5: change in PyGC_Head structure

2020-02-23 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: -mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39657] Bezout and Chinese Remainder Theorem in the Standard Library?

2020-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: I'm inclined to close this. Raymond, Tim: thoughts? -- assignee: -> mark.dickinson nosy: +rhettinger, tim.peters ___ Python tracker ___

[issue36027] Support negative exponents in pow() where a modulus is specified.

2020-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: For tracker historians: see also #457066 -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue39724] IDLE threading + stdout/stdin observed blocking behavior

2020-02-23 Thread Tal Einat
Tal Einat added the comment: I tend to think that we should avoid discrepancies with a simple Python command-line shell by default, and in this case I am not convinced that there is a good reason for a divergence in behavior. I'd be happy to look into debugging this issue in the next few

[issue39730] Licence (license) for Python 3.8.1 is missing

2020-02-23 Thread SilentGhost
Change by SilentGhost : -- priority: normal -> high stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue39648] Expand math.gcd() and math.lcm() to accept multiple arguments

2020-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: Merged; thank you to all involved. -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue39648] Expand math.gcd() and math.lcm() to accept multiple arguments

2020-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: New changeset 559e7f165ad03731e6bc2211c0e6d8d9c02fb549 by Serhiy Storchaka in branch 'master': bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH-18604)

[issue39730] Licence (license) for Python 3.8.1 is missing

2020-02-23 Thread Mark Fernandes
New submission from Mark Fernandes : At https://docs.python.org/3/license.html , the licence agreement for Python 3.8.2rc2 appears, however, I can't see the agreement for 3.8.1. It appears to be missing. Likewise, other licences for various version numbers appear to be missing. Also, it

[issue39729] stat.S_ISXXX can raise OverflowError for remote file modes

2020-02-23 Thread Ammar Askar
Ammar Askar added the comment: Size of the mode aside, isn't this approach problematic anyway? One platform could have an entirely different way of signalling ISDIR vs another. In this case using the host's S_ISDIR for the remote's mode would result in possibly incorrect values. --

[issue39729] stat.S_ISXXX can raise OverflowError for remote file modes

2020-02-23 Thread Arnon Yaari
New submission from Arnon Yaari : The C implementation of the "stat" module on Python 3 (_stat) is using the type "mode_t" for file modes, which differs between operating systems. This type can be defined as either "unsigned short" (for example, in macOS, or the definition added specifically

[issue39726] ctypes on pypi has fallen behind

2020-02-23 Thread David Harding
David Harding added the comment: Hi ammar2, Your comment completely clears up my issue. I was just uninformed. As you have stated, no change needs to be made to the pypi version. To enforce a version of ctypes with venv/pip, I need only enforce a python version that is packaged with that

[issue39724] IDLE threading + stdout/stdin observed blocking behavior

2020-02-23 Thread John Smith
John Smith added the comment: Interesting finding. Just some thoughs: I have to disagree on the "the experience with input() in IDLE is more useful and less confusing, especially to beginners" part. Here are some reasons: 1. If a beginner starts with threading and expect a concurrent

[issue39728] Instantiating enum with invalid value results in ValueError twice

2020-02-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +barry, eli.bendersky, ethan.furman ___ Python tracker ___ ___ Python-bugs-list

[issue39728] Instantiating enum with invalid value results in ValueError twice

2020-02-23 Thread Jonas Malaco
New submission from Jonas Malaco : Trying to instantiate an enum with an invalid value results in "During handling of the above exception, another exception occurred:". $ cat > test.py << EOF from enum import Enum class Color(Enum): RED = 1 GREEN = 2 BLUE = 3 Color(0) EOF $

[issue38035] shared_semaphores cannot be shared across unrelated processes

2020-02-23 Thread Vinay Sharma
Vinay Sharma added the comment: Hi, I think a use case for this is https://docs.python.org/3/library/multiprocessing.shared_memory.html If not, can you please suggest a way to synchronise the above across unrelated processes. -- ___ Python

[issue38101] Update devguide triaging keywords

2020-02-23 Thread Tal Einat
Tal Einat added the comment: Thanks for the fix, Ido! -- nosy: +taleinat resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

<    1   2