- 12 Haz, 2017 5 kayıt (commit)
-
-
Giampaolo Rodola yazdı
bpo-30624 / selectors: use bare 'except' clause instead of 'except Exception'
-
Stéphane Wirtel yazdı
-
mircea-cosbuc yazdı
If max_line_length=None is specified while using the Compat32 policy, it is no longer ignored.
-
Serhiy Storchaka yazdı
The traceback no longer displayed for SystemExit raised in a callback registered by atexit.
-
suketa yazdı
import json before using json module
-
- 11 Haz, 2017 11 kayıt (commit)
-
-
Yury Selivanov yazdı
Revert "bpo-29406: asyncio SSL contexts leak sockets after calling close with certain servers (#409)" (#2111) This reverts commit a608d2d5.
-
Yury Selivanov yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
The depth argument limits recursion.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
SSLObject has recv() and send(), but they don't do any network io.
-
Zachary Ware yazdı
Also fixed a few more line endings that were missed in GH-840, which were causing failure.
-
Nick Coghlan yazdı
- new PYTHONCOERCECLOCALE config setting - coerces legacy C locale to C.UTF-8, C.utf8 or UTF-8 by default - always uses C.UTF-8 on Android - uses `surrogateescape` on stdin and stdout in the coercion target locales - configure option to disable locale coercion at build time - configure option to disable C locale warning at build time
-
Zachary Ware yazdı
-
terryjreedy yazdı
-
terryjreedy yazdı
-
- 10 Haz, 2017 13 kayıt (commit)
-
-
Giampaolo Rodola yazdı
#30624 / selectors: use bare except clause in order to not leave the fd in a bad state in case of error (#2082)
-
Zachary Ware yazdı
Updates checked-in line endings on several files.
-
Ivan Levkivskyi yazdı
This PR contains two updates to typing module: - Support ContextManager on all versions (original PR by Jelle Zijlstra). - Add generic AsyncContextManager.
-
KatherineMichel yazdı
-
Victor Stinner yazdı
Mock os.register_at_fork() when importing the random module, since this function doesn't allow to unregister callbacks and so leaked memory.
-
Victor Stinner yazdı
multiprocessing.Queue.get() with a timeout now polls its reader in non-blocking mode if it succeeded to aquire the lock but the acquire took longer than the timeout. Co-Authored-By:
Grzegorz Grzywacz <grzgrzgrz3@gmail.com>
-
Serhiy Storchaka yazdı
-
Roy Williams yazdı
Running our unit tests with `-bb` enabled triggered this failure.
-
Sylvain yazdı
The function '_PyArg_ParseStack()' and '_PyArg_UnpackStack' were failing (with error "XXX() takes Y argument (Z given)") before the function '_PyArg_NoStackKeywords()' was called. Thus, the latter did not raise its more meaningful error : "XXX() takes no keyword arguments".
-
csabella yazdı
Mention that fnmatchcase does not call normcase, and fnmatch does.
-
Nikolay Kim yazdı
* asyncio SSL contexts leak sockets after calling close with certain servers * cleanup _shutdown_timeout_handle on _fatal_error
-
Jim Fasarakis-Hilliard yazdı
-
Zachary Ware yazdı
-
- 09 Haz, 2017 11 kayıt (commit)
-
-
Brett Cannon yazdı
This will allow for centralized management of the Codecov config to prevent skew as well as easier management going forward. Closes python/core-workflow#81.
-
Yury Selivanov yazdı
-
Michaël Sghaïer yazdı
-
Nikolay Kim yazdı
-
Brett Cannon yazdı
-
Yury Selivanov yazdı
-
Jim Fasarakis-Hilliard yazdı
Document that assertNotRegexpMatches is a deprecated alias for assertNotRegex.
-
Giampaolo Rodola yazdı
* #30014: make selectors.DefaultSelector.modify() faster by relying on selector's modify() method instead of un/register()ing the fd * #30014: add unit test * speedup poll/epoll/devpoll modify() method by using internal modify() call * update doc * address PR comments * update NEWS entries * use != instead of 'is not'
-
Mathieu Sornay yazdı
Avoid a deadlock when the waiter who is about to take the lock is cancelled Issue #27585
-
Serhiy Storchaka yazdı
* Fix regression in error message introduced in bpo-29951. * Add test. * Make the test more strong.
-
Jelle Zijlstra yazdı
contextlib.AbstractContextManager now supports anti-registration by setting __enter__ = None or __exit__ = None, following the pattern introduced in bpo-25958.
-