- 09 May, 2018 4 commits
-
-
Serhiy Storchaka authored
-
Julien Palard authored
-
jdemeyer authored
-
Ivan Levkivskyi authored
This also fixes https://bugs.python.org/issue33420
-
- 08 May, 2018 4 commits
-
-
Grant Jenks authored
-
Ivan Levkivskyi authored
-
Serhiy Storchaka authored
random() takes precedence over getrandbits() if defined later in the class tree.
-
Serhiy Storchaka authored
* Expose the sigset_t converter via private API _Py_Sigset_Converter(). * Use Argument Clinic for parsing sigset_t in signalmodule.c. * Raise ValueError instead OverflowError for integers out of the C long range. Based on patch by Pablo Galindo Salgado.
-
- 06 May, 2018 2 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- 05 May, 2018 1 commit
-
-
Andrés Delfino authored
bpo-33422: Fix quotation marks getting deleted when looking up byte/string literals on pydoc. (GH-6701) Also update the list of string prefixes.
-
- 04 May, 2018 2 commits
-
-
Vinay Sajip authored
-
Antoine Pitrou authored
-
- 02 May, 2018 5 commits
-
-
lekma authored
-
Ned Deily authored
-
Ned Deily authored
Currently, "pip3 install --upgrade pip" unconditionally installs a "pip" alias even for Python 3. If a user has an existing Python 3.x installed from a python.org macOS installer and then subsequently manually updates to a new version of pip, there may now be a stray "pip" alias in the Python 3.x framework bin directory which can cause confusion if the user has both a Python 2.7 and 3.x installed; if the Python 3.x fw bin directory appears early on $PATH, "pip" might invoke the pip3 for the Python 3.x rather than the pip for Python 2.7. To try to mitigate this, the macOS installer script for the ensurepip option will unconditionally remove "pip" from the 3.x framework bin directory being updated / installed. (The ambiguity can be avoided by using "pythonx.y -m pip".)
-
Ned Deily authored
-
Ray Donnelly authored
-
- 01 May, 2018 4 commits
-
-
Serhiy Storchaka authored
-
Stéphane Wirtel authored
Remove the paragraph where we explain that os.utime() does not support a directory as path under Windows. Patch by Jan-Philip Gehrcke Co-authored-by: Jan-Philip Gehrcke <jgehrcke@gmail.com>
-
Julien Palard authored
-
Michael Selik authored
Previously emitted cover files only when --missing option was used.
-
- 30 Apr, 2018 10 commits
-
-
Victor Stinner authored
ast.c: fstring_fix_node_location() downcasts a pointer difference to a C int. Replace int with Py_ssize_t to fix the compiler warning.
-
Ekin Dursun authored
-
Brett Cannon authored
bpo-33254: do not return an empty list when asking for the contents of a namespace package (GH-6467)
-
Matthias Klose authored
-
Matthias Klose authored
-
Matthias Klose authored
* issue33377: add triplets for mips-r6 and riscv * issue33377: add triplets for mips-r6 and riscv (NEWS entry)
-
Andrés Delfino authored
-
Serhiy Storchaka authored
long_long() was used with three function types: PyCFunction, getter and unaryfunction.
-
Victor Stinner authored
Use the _PyTime_t type and round away from zero (ROUND_UP, _PyTime_ROUND_TIMEOUT) the sleep duration, when converting a Python object to seconds and then to milliseconds. Raise an OverflowError in case of overflow. Previously the (int)double conversion rounded towards zero (ROUND_DOWN).
-
Terry Jan Reedy authored
In text and entry boxes, this affects selection by double-click, movement left/right by control-left/right, and deletion left/right by control-BACKSPACE/DEL.
-
- 29 Apr, 2018 6 commits
-
-
Serhiy Storchaka authored
They where silenced before.
-
Siddhesh Poyarekar authored
METH_NOARGS functions need only a single argument but they are cast into a PyCFunction, which takes two arguments. This triggers an invalid function cast warning in gcc8 due to the argument mismatch. Fix this by adding a dummy unused argument.
-
Bo Bayles authored
-
sblondon authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- 28 Apr, 2018 1 commit
-
-
Dong-hee Na authored
-
- 27 Apr, 2018 1 commit
-
-
Tom Christie authored
The wording here seems wrong, as per https://bugs.python.org/msg315792
-