- 09 Şub, 2018 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
fnmatch.translate() no longer produces patterns which contain set operations. Sets starting with '[' or containing '--', '&&', '~~' or '||' will be interpreted differently in regular expressions in future versions. Currently they emit warnings. fnmatch.translate() now avoids producing patterns containing such sets by accident.
-
* use isinstance(..) instead of type(..) * use '.. not in ..' instead of 'not .. in .. '
-
Alan D Moore yazdı
-
- 08 Şub, 2018 1 kayıt (commit)
-
-
Stéphane Wirtel yazdı
Fix bug in travis configuration where it did not run the tests when a change includes both code and doc changes.
-
- 07 Şub, 2018 1 kayıt (commit)
-
-
Brice Gros yazdı
Fixes the documentation for `subprocess.check_output()` not mentioning that the encoding and errors parameters were added in 3.6.
-
- 06 Şub, 2018 4 kayıt (commit)
-
-
Alexey yazdı
It now reads: ...be aware that Python has no control over...
-
Bernhard M. Wiedemann yazdı
it was using our mocked listdir to check when the files were gone.
-
Alexey Izbyshev yazdı
Fix a rare but potential pre-exec child process deadlock in subprocess on POSIX systems when marking file descriptors inheritable on exec in the child process. This bug appears to have been introduced in 3.4 with the inheritable file descriptors support. This also changes Python/fileutils.c `set_inheritable` to use the "slow" two `fcntl` syscall path instead of the "fast" single `ioctl` syscall path when asked to be async signal safe (by way of being asked not to raise exceptions). `ioctl` is not a POSIX async-signal-safe approved function. ref: http://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html
-
Paul Ganssle yazdı
Documents bpo-15873
-
- 05 Şub, 2018 5 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Dag Heyman yazdı
now longer -> no longer
-
Mariatta yazdı
`arg_name` and `element_index` are defined as `digit`+ instead of `integer`.
-
Cheryl Sabella yazdı
When `__getattr__` is implemented, attribute lookup will always fall back to that, even if the initial failure comes from `__getattribute__` or a descriptor's `__get__` method (including property methods).
-
Terry Jan Reedy yazdı
-
- 04 Şub, 2018 8 kayıt (commit)
-
-
Cheryl Sabella yazdı
Add new entries to the widget list.
-
Zachary Ware yazdı
-
Zachary Ware yazdı
-
Raymond Hettinger yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
nathankerr96 yazdı
Changed the definition of width and precision from "integer" to "digit+" in format mini-language doc.
-
Leo Arias yazdı
Fix typos found by codespell in docs, docstrings, and comments.
-
- 03 Şub, 2018 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Mario Corchero yazdı
Previously the module name was used, which broke relative imports when pdb was run against a plain module or submodule.
-
Eric Snow yazdı
-
- 02 Şub, 2018 9 kayıt (commit)
-
-
Bar Harel yazdı
-
Cheryl Sabella yazdı
Modify RE examples in documentation to use raw strings to prevent DeprecationWarning. Add text to REGEX HOWTO to highlight the deprecation. Approved by Serhiy Storchaka.
-
Barry Warsaw yazdı
* Make sure ``__spec__.loader`` matches ``__loader__`` for namespace packages. * Make sure ``__spec__.origin` matches ``__file__`` for namespace packages. https://bugs.python.org/issue32303 https://bugs.python.org/issue32305
-
Yury Selivanov yazdı
This reverts commit 72a0d218. The reverted commit had a few issues so it was unanimously decided to undo it. See the bpo issue for details.
-
oldk yazdı
-
Nathaniel J. Smith yazdı
-
oldk yazdı
Clarify that the level argument is used to determine whether to perform absolute or relative imports: 0 is absolute, while a positive number is the number of parent directories to search relative to the current module.
-
Yury Selivanov yazdı
-
Dmitry Alimov yazdı
-
- 01 Şub, 2018 5 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Stéphane Wirtel yazdı
* bpo-32711: Fix warnings for Python/ast_unparse.c
-
Serhiy Storchaka yazdı
It was deprecated in 3.6.
-
Serhiy Storchaka yazdı
-
Stéphane Wirtel yazdı
In the tutorial about the Generator expression, there is an example with a dict comprehension and not with a generator expression, just removed the code.
-
- 31 Ock, 2018 1 kayıt (commit)
-
-
Ned Deily yazdı
-