- 09 May, 2018 5 kayıt (commit)
-
-
sblondon yazdı
-
Serhiy Storchaka yazdı
-
Julien Palard yazdı
-
jdemeyer yazdı
-
Ivan Levkivskyi yazdı
This also fixes https://bugs.python.org/issue33420
-
- 08 May, 2018 4 kayıt (commit)
-
-
Grant Jenks yazdı
-
Ivan Levkivskyi yazdı
-
Serhiy Storchaka yazdı
random() takes precedence over getrandbits() if defined later in the class tree.
-
Serhiy Storchaka yazdı
* 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 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 05 May, 2018 1 kayıt (commit)
-
-
Andrés Delfino yazdı
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 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Antoine Pitrou yazdı
-
- 02 May, 2018 5 kayıt (commit)
-
-
lekma yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
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 yazdı
-
Ray Donnelly yazdı
-
- 01 May, 2018 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Stéphane Wirtel yazdı
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 yazdı
-
Michael Selik yazdı
Previously emitted cover files only when --missing option was used.
-
- 30 Nis, 2018 10 kayıt (commit)
-
-
Victor Stinner yazdı
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 yazdı
-
Brett Cannon yazdı
bpo-33254: do not return an empty list when asking for the contents of a namespace package (GH-6467)
-
Matthias Klose yazdı
-
Matthias Klose yazdı
-
Matthias Klose yazdı
* issue33377: add triplets for mips-r6 and riscv * issue33377: add triplets for mips-r6 and riscv (NEWS entry)
-
Andrés Delfino yazdı
-
Serhiy Storchaka yazdı
long_long() was used with three function types: PyCFunction, getter and unaryfunction.
-
Victor Stinner yazdı
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 yazdı
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 Nis, 2018 6 kayıt (commit)
-
-
Serhiy Storchaka yazdı
They where silenced before.
-
Siddhesh Poyarekar yazdı
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 yazdı
-
sblondon yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 28 Nis, 2018 1 kayıt (commit)
-
-
Dong-hee Na yazdı
-