- 08 Eki, 2017 1 kayıt (commit)
-
-
Zachary Ware yazdı
With the upgrade of buildbot.python.org from Buildbot 0.8.x to 0.9.x, the xmlrpc interface has been removed. This test is now skipped until it can be rewritten to query a suitable substitute.
-
- 07 Eki, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Tzu-ping Chung yazdı
-
- 06 Eki, 2017 8 kayıt (commit)
-
-
Yury Selivanov yazdı
-
Barry Warsaw yazdı
-
Masayuki Yamamoto yazdı
See PEP 539 for details. Highlights of changes: - Add Thread Specific Storage (TSS) API - Document the Thread Local Storage (TLS) API as deprecated - Update code that used TLS API to use TSS API
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
Benjamin Peterson yazdı
There just isn't much we can assert in a portable way.
-
Benjamin Peterson yazdı
-
Jelle Zijlstra yazdı
Per PEP 492, 'async' and 'await' should become proper keywords in 3.7.
-
- 05 Eki, 2017 9 kayıt (commit)
-
-
Steve Dower yazdı
-
Barry Warsaw yazdı
Implement PEP 553, built-in breakpoint() with support from sys.breakpointhook(), along with documentation and tests. Closes bpo-31353
-
Victor K yazdı
-
Victor Stinner yazdı
Fix test_exception_errpipe_bad_data() and test_exception_errpipe_normal() of test_subprocess: mock os.waitpid() to avoid calling the real os.waitpid(0, 0) which is an unexpected side effect of the test.
-
INADA Naoki yazdı
sre_compile does bit test (e.g. `flags & SRE_FLAG_IGNORECASE`) in loop. `IntFlag.__and__` and `IntFlag.__new__` made it slower. So this commit convert it to normal int before passing flags to `sre_compile()`.
-
Jakub Stasiak yazdı
-
Benjamin Peterson yazdı
-
pdox yazdı
-
Terry Jan Reedy yazdı
Followed format of other entries.
-
- 04 Eki, 2017 8 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Implementations of these operations are virtually identical.
-
Serhiy Storchaka yazdı
* Fix incorrect links. * Remove redundant links. * Add signatures and index entries for gettext related functions in the locale module.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
On Windows, Py_FatalError() now limits the size to 256 bytes of the buffer used to call OutputDebugStringW(). Previously, the size depended on the length of the error message.
-
INADA Naoki yazdı
While there is not real bug in this case, using re.IGNORECASE without re.ASCII leads unexpected behavior. Instead of adding re.ASCII, this commit removes re.IGNORECASE flag because it's easier and simpler. This commit removes dead copy of the pattern in email.util module too. While the pattern is same, it is compiled separately because it had different flags.
-
Ned Deily yazdı
-
- 03 Eki, 2017 6 kayıt (commit)
-
-
Serhiy Storchaka yazdı
when pass a string larger than 2 GiB. Decrease memory requirements for Tcl's bigmem tests.
-
Serhiy Storchaka yazdı
-
diana yazdı
Update the compile tests for optimization levels to also check that __debug__ blocks are included or excluded based on the optimization level. Patch by Diana Clarke.
-
Serhiy Storchaka yazdı
to integer with binary base.
-
INADA Naoki yazdı
It shows show import time of each module. It's useful for optimizing startup time. Typical usage: python -X importtime -c 'import requests'
-
Thomas Moreau yazdı
-
- 02 Eki, 2017 6 kayıt (commit)
-
-
Anselm Kruis yazdı
-
Victor Stinner yazdı
On macOS, a process can exit with -SIGKILL if it is killed "early" with SIGTERM.
-
Victor Stinner yazdı
On macOS, use uuid_generate_time() instead of uuid_generate_time_safe() of libuuid, since uuid_generate_time_safe() is not available.
-
Antoine Pitrou yazdı
bpo-31516: current_thread() should not return a dummy thread at shutdown
-
Cornelius Diekmann yazdı
* bpo-31158: Fix nondeterministic read in test_pty * Reuse existing readline implementation from io. Thx to @pitrou * Updated comment Ideally, this commit is fixuped into the previous commit. Since there is already a comment on github, I won't rebase.
-
INADA Naoki yazdı
DER_cert_to_PEM_cert() used textwrap.fill() to format PEM. But it's library to wrap lines on word boundary, while PEM is base64 encoded string. Additionally, importing textwrap is little slow.
-