- 13 Şub, 2018 4 kayıt (commit)
-
-
Oren Milman yazdı
-
Nick Coghlan yazdı
-
Segev Finer yazdı
-
Serhiy Storchaka yazdı
-
- 12 Şub, 2018 4 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Using the system and place-dependent default encoding for open() is a bad idea for IDLE's system and location-independent files.
-
Terry Jan Reedy yazdı
GUI test test_file_buttons() only looks at initial ascii-only lines, but failed on systems where open() defaults to 'ascii' because readline() internally reads and decodes far enough ahead to encounter a non-ascii character in CREDITS.txt.
-
Коренберг Марк yazdı
-
SSE4 yazdı
The PrintNameOffset field of the reparse data buffer was treated as a number of characters instead of bytes.
-
- 11 Şub, 2018 7 kayıt (commit)
-
-
Zachary Ware yazdı
-
Pablo Galindo yazdı
Describe *text* as an alias for *universal_newlines* in more places that people are likely to be referred to.
-
Zachary Ware yazdı
-
Zachary Ware yazdı
This is not the ideal solution; this means that a test module is now always included in the main python3x.dll. However, we're already including xxsubtype, so why not?
-
Raymond Hettinger yazdı
-
Cheryl Sabella yazdı
-
Raymond Hettinger yazdı
-
- 10 Şub, 2018 3 kayıt (commit)
-
-
sblondon yazdı
The new link is given in a red box on the old page.
-
INADA Naoki yazdı
We don't use debugger on Travis.
-
Zhou Fangyi yazdı
Importing unicodedata in sre_parse leads to failure in compilation. unicodedata is unused during compilation, and is not compiled when this file is imported. The error occurs when generating posix variables, pprint is required. The dependency chain goes on like this: sysconfig -> pprint -> re -> sre_compile -> sre_parse (this file) This commits fixes compilation issues introduced by 2272cec13b53c405d86c45d404f035f201c0baef. (Issue 30688, GH-5588)
-
- 09 Şub, 2018 7 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Co-authored-by: Jonathan Eunice <jonathan.eunice@gmail.com>
-
Serhiy Storchaka yazdı
Co-authored-by: Jake Davis <jcdavis@awedge.net>
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
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 4 kayıt (commit)
-
-
Cheryl Sabella yazdı
Add new entries to the widget list.
-
Zachary Ware yazdı
-
Zachary Ware yazdı
-
Raymond Hettinger yazdı
-