- 04 Eyl, 2017 5 kayıt (commit)
-
-
Zhiming Wang yazdı
Fix fileinput with inplace=True to accept pathlib.Path objects.
-
Benjamin Peterson yazdı
We never actually check HAVE_SELECT.
-
Benjamin Peterson yazdı
This is a required feature is C99, which we require.
-
Segev Finer yazdı
-
Ned Deily yazdı
Used in macOS framework builds.
-
- 03 Eyl, 2017 4 kayıt (commit)
-
-
Gregory P. Smith yazdı
-
Antoine Pitrou yazdı
-
Serhiy Storchaka yazdı
-
Oren Milman yazdı
-
- 01 Eyl, 2017 6 kayıt (commit)
-
-
Victor Stinner yazdı
Store exceptions as string rather than object to prevent reference cycles which cause leaking dangling threads.
-
Victor Stinner yazdı
Call doCleanups() to close the loop after calling executor.shutdown(wait=True): see TestCase.set_event_loop() of asyncio.test_utils. Replace also gc.collect() with support.gc_collect().
-
Victor Stinner yazdı
* bpo-31326: ProcessPoolExecutor waits for the call queue thread concurrent.futures.ProcessPoolExecutor.shutdown() now explicitly closes the call queue. Moreover, shutdown(wait=True) now also join the call queue thread, to prevent leaking a dangling thread. * Fix for shutdown() being called twice.
-
Grzegorz Grzywacz yazdı
bpo-27144: concurrent.futures as_complete and map iterators do not keep reference to returned object (#1560) * bpo-27144: concurrent.futures as_complie and map iterators do not keep reference to returned object * Some nits. Improve wordings in docstrings and comments, and avoid relying on sys.getrefcount() in tests.
-
Victor Stinner yazdı
* Explicitly call shutdown(wait=True) on executors to wait until all threads complete to prevent side effects between tests. * Fix test_loop_self_reading_exception(): don't mock loop.close(). Previously, the original close() method was called rather than the mock, because how set_event_loop() registered loop.close().
-
Victor Stinner yazdı
Use a pool of integer objects toprevent false alarm when checking for memory block leaks. Fill the pool with values in -1000..1000 which are the most common (reference, memory block, file descriptor) differences. Co-Authored-By: Antoine Pitrou <pitrou@free.fr>
-
- 30 Agu, 2017 7 kayıt (commit)
-
-
Eric Appelt yazdı
Use base class rather than metaclass in examples.
-
Lisa Hewus Fresh yazdı
Update old devguide links from https://docs.python.org/devguide to https://devguide.python.org
-
Antoine Pitrou yazdı
-
Sergey Fedoseev yazdı
Code was indented with three spaces. Fixed using four spaces.
-
Alex Gaynor yazdı
-
Christopher Wilcox yazdı
* Fixes #30581 by adding a path to use newer GetMaximumProcessorCount API on Windows calls to os.cpu_count() * Add NEWS.d entry for bpo-30581, os.cpu_count on Windows. * Tweak NEWS entry
-
Terry Jan Reedy yazdı
-
- 29 Agu, 2017 5 kayıt (commit)
-
-
Allen W. Smith, Ph.D yazdı
* Make error message more informative Replace assertions in error-reporting code with more-informative version that doesn't cause confusion over where and what the error is. * Additional clarification + get travis to check * Change from SystemError to TypeError As suggested in PR comment by @pitrou, changing from SystemError; TypeError appears appropriate. * NEWS file installation; ACKS addition (will do my best to justify it by additional work) * Making current AssertionErrors in multiprocessing more informative * Blurb added re multiprocessing managers.py, queues.py cleanup * Further multiprocessing cleanup - went through pool.py * Fix two asserts in multiprocessing/util.py * Most asserts in multiprocessing more informative * Didn't save right version * Further work on multiprocessing error messages * Correct typo * Correct typo v2 * Blasted colon... serves me right for trying to work on two things at once * Simplify NEWS entry * Update 2017-08-18-17-16-38.bpo-5001.gwnthq.rst * Update 2017-08-18-17-16-38.bpo-5001.gwnthq.rst OK, never mind. * Corrected (thanks to pitrou) error messages for notify * Remove extraneous backslash in docstring.
-
Oren Milman yazdı
if pathname.replace('/', '\\') returns non-string.
-
Ivan Chernoff yazdı
-
Serhiy Storchaka yazdı
binding a submodule to a name.
-
Oren Milman yazdı
-
- 28 Agu, 2017 4 kayıt (commit)
-
-
Gregory P. Smith yazdı
subobjects, not subobjecs.
-
Pauli Virtanen yazdı
Ctypes currently produces wrong pep3118 type codes for several types. E.g. memoryview(ctypes.c_long()).format gives "<l" on 64-bit platforms, but it should be "<q" instead for sizeof(c_long) == 8 The problem is that the '<>' endian specification in the struct syntax also turns on the "standard size" mode, which makes type characters have a platform-independent meaning, which does not match with the codes used internally in ctypes. The struct module format syntax also does not allow specifying native-size non-native-endian items. This commit adds a converter function that maps the internal ctypes codes to appropriate struct module standard-size codes in the pep3118 format strings. The tests are modified to check for this.
-
Pier-Yves Lessard yazdı
* Added support for CAN_ISOTP protocol * Added unit tests for CAN ISOTP * Updated documentation for ISO-TP protocol * Removed trailing whitespace in documentation * Added blurb NEWS.d file * updated Misc/ACKS * Fixed broken unit test that was using isotp const outside of skippable section * Removed dependecy over third party project * Added implementation for getsockname + unit tests * Missing newline at end of ACKS file * Accidentally inserted a type in ACKS file * Followed tiran changes review #1 recommendations * Added spaces after comma
-
Henk-Jaap Wagenaar yazdı
- Link to the regular expressions object documentation - Clarify that it can be used with more than the two methods currently stated.
-
- 27 Agu, 2017 2 kayıt (commit)
-
-
Cheryl Sabella yazdı
Move some data and functions from the class to module level. Patch by Cheryl Sabella.
-
Terry Jan Reedy yazdı
-
- 26 Agu, 2017 2 kayıt (commit)
-
-
Cheryl Sabella yazdı
Patch by Cheryl Sabella.
-
Paul Moore yazdı
bpo-31072: Rename the new filter argument for zipapp.create_archive (GH-3049) * Rename the new argument to "filter" * Improve tests for the new functionality * Add a "What's New" entry.
-
- 25 Agu, 2017 5 kayıt (commit)
-
-
Oren Milman yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
Gregory P. Smith yazdı
-