- 08 Haz, 2018 20 kayıt (commit)
-
-
Andrés Delfino yazdı
-
Thomas Kluyver yazdı
More consistent with how other parts of Python find the filename (e.g. tracebacks and pdb).
-
Andrés Delfino yazdı
-
Dong-hee Na yazdı
-
Suriyaa ✌️️ yazdı
-
Elvis Pranskevichus yazdı
-
Andrés Delfino yazdı
-
Łukasz Langa yazdı
This solves a regression in logging config due to changes in BPO-23835.
-
wim glenn yazdı
- bugfix and test for fragile metavar handling in argparse (see bpo-24089, bpo-14046, bpo-25058, bpo-11874) - also fixes some incorrect tests that did not make 1-element tuples correctly
-
Victor Stinner yazdı
_feed_data_to_bufferred_proto() renamed to _feed_data_to_buffered_proto() ("bufferred" => "buffered"). Typo spotted by Nathaniel J. Smith.
-
Victor Stinner yazdı
If tests are re-run, use "xxx then yyy" result format (ex: "FAILURE then SUCCESS") to show that some failing tests have been re-run. Add also test_regrtest.test_rerun_fail() test.
-
Andrés Delfino yazdı
-
Terry Jan Reedy yazdı
-
Cheryl Sabella yazdı
-
Dong-hee Na yazdı
-
atg7000 yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
Victor Stinner yazdı
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 Haz, 2018 10 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
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 yazdı
A few wording improvements to dict ordering documentation.
-
Eric V. Smith yazdı
-
Benjamin Peterson yazdı
Followup to 4705ea38 and bpo-33778.
-
Anthony Sottile yazdı
-
Scott Sanderson yazdı
-
Zackery Spytz yazdı
-
arikrupnik yazdı
* bpo-33274: Compliance with DOM L1: return removed attribute * Update 2018-06-06-22-01-33.bpo-33274.teYqv8.rst
-
Benjamin Peterson yazdı
Also, standardize indentation of generated tables.
-
- 06 Haz, 2018 9 kayıt (commit)
-
-
Victor Stinner yazdı
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 yazdı
Hide PendingDeprecationWarning in test__register_task_3().
-
Victor Stinner yazdı
* Close sockets and streams to fix ResourceWarning warnings * Catch also OSError to hide a traceback on an expected handshake error
-
Victor Stinner yazdı
Document that the default value of repeat changed from 3 to 5 in Python 3.7.
-
Victor Stinner yazdı
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 yazdı
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 yazdı
an => and
-
Victor Stinner yazdı
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 yazdı
-
- 05 Haz, 2018 1 kayıt (commit)
-
-
John Reese yazdı
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.
-