- 08 Jun, 2018 2 commits
-
-
Yury Selivanov authored
-
Victor Stinner authored
The test does crash on multiple CIs causing many troubles. For example, the test prevents to get results of the two Refleak 3.x buildbots.
-
- 07 Jun, 2018 10 commits
-
-
Terry Jan Reedy authored
-
Victor Stinner authored
The cancellation of an overlapped WSARecv() has a race condition which causes data loss because of the current implementation of proactor in asyncio. No longer cancel overlapped WSARecv() in _ProactorReadPipeTransport to work around the race condition. Remove the optimized recv_into() implementation to get simple implementation of pause_reading() using the single _pending_data attribute. Move _feed_data_to_bufferred_proto() to protocols.py. Remove set_protocol() method which became useless.
-
Neil Schemenauer authored
A few wording improvements to dict ordering documentation.
-
Eric V. Smith authored
-
Benjamin Peterson authored
Followup to 4705ea38c900f068fd262aca02943896d1123544 and bpo-33778.
-
Anthony Sottile authored
-
Scott Sanderson authored
-
Zackery Spytz authored
-
arikrupnik authored
* bpo-33274: Compliance with DOM L1: return removed attribute * Update 2018-06-06-22-01-33.bpo-33274.teYqv8.rst
-
Benjamin Peterson authored
Also, standardize indentation of generated tables.
-
- 06 Jun, 2018 9 commits
-
-
Victor Stinner authored
Fix "<CoroWrapper ...> was never yielded from" warning in PyTask_PyFuture_Tests.test_error_in_call_soon() of test_asyncio.test_tasks. Close manually the coroutine on error.
-
Victor Stinner authored
Hide PendingDeprecationWarning in test__register_task_3().
-
Victor Stinner authored
* Close sockets and streams to fix ResourceWarning warnings * Catch also OSError to hide a traceback on an expected handshake error
-
Victor Stinner authored
Document that the default value of repeat changed from 3 to 5 in Python 3.7.
-
Victor Stinner authored
Substract one because listdir() opens internally a file descriptor to list the content of the /proc/self/fd/ directory. Add test_support.test_fd_count(). Move also MAXFD code before msvcrt.CrtSetReportMode(), to make sure that the report mode is always restored on failure.
-
Victor Stinner authored
Move the floor() call into fbound() to call floor() on a double rather than an int. The change should enhance the rounding. Document also (int)double rounding mode.
-
Victor Stinner authored
an => and
-
Victor Stinner authored
The bug has been fixed 10 months ago: * https://svnweb.freebsd.org/base?view=revision&revision=321920 * https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221048
-
Benjamin Peterson authored
-
- 05 Jun, 2018 13 commits
-
-
John Reese authored
With 3.7+, dictionary are ordered by design. Configparser still uses collections.OrderedDict, which is unnecessary. This updates the module to use the standard dict implementation by default, and changes the docs and tests to match.
-
Gregory P. Smith authored
It wasn't testing functionality. Now it is (on Linux anyways).
-
Thomas Kluyver authored
* Document tokenize.generate_tokens() * Add news file * Add test for generate_tokens * Document behaviour around ENCODING token * Add generate_tokens to __all__
-
Serhiy Storchaka authored
testModeStrings and testTruncateOnWindows were depended on a file leaked in other tests. Also improve cleaning up after tests.
-
Barry Warsaw authored
-
Vinay Sajip authored
-
Mayank Singhal authored
-
Serhiy Storchaka authored
With addCleanup() f.close() was executed after tearDown().
-
Yury Selivanov authored
In addition to that, mark SSLTransport as "closed" in its "abort()" method to prevent bogus warnings.
-
Zackery Spytz authored
Raise TypeError instead of SystemError for unsupported operations.
-
Tobias Kunze authored
-
INADA Naoki authored
-
Serhiy Storchaka authored
-
- 04 Jun, 2018 6 commits
-
-
INADA Naoki authored
-
Steve Dower authored
-
Cheryl Sabella authored
-
Cheryl Sabella authored
Previously, the mouse wheel and scrollbar slider moved text by a fixed number of pixels, resulting in partial lines at the top of the editor box. The change also applies to the shell and grep output windows, but not to read-only text views.
-
Yury Selivanov authored
* Fix AttributeError (not all SSL exceptions have 'errno' attribute) * Increase default handshake timeout from 10 to 60 seconds * Make sure start_tls can be cancelled correctly * Make sure any error in SSLProtocol gets propagated (instead of just being logged)
-
A. Jesse Jiryu Davis authored
-