- 18 Haz, 2016 6 kayıt (commit)
-
-
Serhiy Storchaka yazdı
represented as a compination of known flags.
-
Berker Peksag yazdı
-
Senthil Kumaran yazdı
Patch contributed Марк Коренберг.
-
Serhiy Storchaka yazdı
an iterable of integers. Now only strings and byte-like objects are accepted.
-
Martin Panter yazdı
-
Serhiy Storchaka yazdı
-
- 17 Haz, 2016 2 kayıt (commit)
-
-
Steve Dower yazdı
Issue #27048: Prevents distutils failing on Windows when environment variables contain non-ASCII characters
-
Serhiy Storchaka yazdı
-
- 16 Haz, 2016 2 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #27278. It should fix a conversion warning. In practice, the Linux kernel doesn't return more than 32 MB per call to the getrandom() syscall.
-
Serhiy Storchaka yazdı
-
- 15 Haz, 2016 7 kayıt (commit)
-
-
Zachary Ware yazdı
-
Ned Deily yazdı
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Martin Panter yazdı
Patch by John Hagen.
-
- 14 Haz, 2016 20 kayıt (commit)
-
-
Serhiy Storchaka yazdı
by Jelle Zijlstra.
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
managed by a contextlib.ExitStack() and one of the exit stack generators catches and raises it in a chain, do not re-raise the original exception when exiting, let the new chained one through. This avoids the PEP 479 bug described in issue25782.
-
Victor Stinner yazdı
Casting Py_ssize_t to Py_ssize_t is useless.
-
Victor Stinner yazdı
Issue #27278: Fix os.urandom() implementation using getrandom() on Linux. Truncate size to INT_MAX and loop until we collected enough random bytes, instead of casting a directly Py_ssize_t to int.
-
Victor Stinner yazdı
-
Martin Panter yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
They are not used as base classes by another tests so they can safely be removed.
-
Berker Peksag yazdı
sqlite3.OptimizedUnicode is an alias for str in Python 3 and its behavior is already tested in CheckOptimizedUnicode in Lib/sqlite3/test/factory.py. sqlite3.OptimizedUnicode was undocumented in 0fc10a33eb4c and probably added back with the result of a bad merge.
-
Serhiy Storchaka yazdı
containing spaces.
-
Martin Panter yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Martin Panter yazdı
-
Terry Jan Reedy yazdı
Previously, when IDLE was started from a console or by import, a cascade of warnings was emitted. Patch by Serhiy Storchaka.
-
Martin Panter yazdı
-
Martin Panter yazdı
Replace os.popen() with subprocess.Popen. Based on patch by Victor Stinner. If the "gcc", "cc" or "objdump" command is not available, the code was supposed to raise an OSError exception. But there was a bug in the code. The shell code returns the exit code 10 if the required command is missing, and the code tries to check for the status 10. The problem is that os.popen() doesn't return the exit code directly, but a status which should be processed by os.WIFEXITED() and os.WEXITSTATUS(). In practice, the exception was never raised. The OSError exception was not documented and ctypes.util.find_library() is expected to return None if the library is not found.
-
Martin Panter yazdı
Based on patch by Serhiy Storchaka.
-
Ned Deily yazdı
-
- 13 Haz, 2016 3 kayıt (commit)
-
-
Martin Panter yazdı
-
Berker Peksag yazdı
Patch by Gareth Rees.
-
Berker Peksag yazdı
-