- 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ı
-
- 27 Nis, 2018 4 kayıt (commit)
-
-
Tom Christie yazdı
The wording here seems wrong, as per https://bugs.python.org/msg315792
-
Zsolt Dollenstein yazdı
-
Victor Stinner yazdı
Cast pointer difference from ssize_t to int: a frame is very unlikely larger than 2 GB.
-
Pablo Galindo yazdı
Fix test_embed.test_pre_initialization_sys_options() when building with --enable-shared
-
- 26 Nis, 2018 1 kayıt (commit)
-
-
Brian Curtin yazdı
Previously, the predicate parameter was mentioned, but what it was to be called with was not documented and required either trial-and-error or looking into the source to find that it is called with the `value`, or second item, of the full members list. This change addresses what the predicate will receive, as well as does some light formatting to make this clear.
-
- 25 Nis, 2018 4 kayıt (commit)
-
-
Cheryl Sabella yazdı
-
Serhiy Storchaka yazdı
Added tests to ensure that all defined opcodes are supported.
-
Serhiy Storchaka yazdı
-
Andrés Delfino yazdı
-