- 20 Ara, 2018 10 kayıt (commit)
-
-
Victor Stinner yazdı
multiprocessing.Pool destructor now emits ResourceWarning if the pool is still running.
-
Serhiy Storchaka yazdı
-
Xtreak yazdı
-
Terry Jan Reedy yazdı
Format menu and preferences.
-
Zackery Spytz yazdı
"dll" would leak if an error occurred in _validate_paramflags() or GenericPyCData_new().
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Fixed some errors in refcounts.dat, remove functions removed in Python 3, and add more entries for documented functions. This will add several automatically generated notes about return values.
-
Terry Jan Reedy yazdı
-
Cheryl Sabella yazdı
Also add some internal cross-references.
-
Steve Dower yazdı
-
- 19 Ara, 2018 8 kayıt (commit)
-
-
Mat M yazdı
Makes the documentation more comprehensive in terms of indicating whether or not a function returns a new reference. Also fixes some errors and adds missing functions.
-
stratakis yazdı
When compiling 3rd party C extensions, the linker flags used by the compiler for the interpreter and the stdlib modules, will get leaked into distutils. In order to avoid that, the PY_CORE_LDFLAGS and PY_LDFLAGS_NODIST are introduced to keep those flags separated.
-
Chris Rands yazdı
* extending the joke! *
📜 🤖 Added by blurb_it. -
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Manjusaka yazdı
-
Serhiy Storchaka yazdı
-
Jules Lasne (jlasne) yazdı
-
- 18 Ara, 2018 10 kayıt (commit)
-
-
Victor Stinner yazdı
Fix test_multiprocessing_main_handling: use multiprocessing.Pool with a context manager and then explicitly join the pool.
-
Victor Stinner yazdı
Fix a race condition in check_interrupted_write() of test_io: create directly the thread with SIGALRM signal blocked, rather than blocking the signal later from the thread. Previously, it was possible that the thread gets the signal before the signal is blocked.
-
Vladimir Matveev yazdı
-
Hrvoje Nikšić yazdı
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
Add a comment explaining why system_alias() doesn't alias Darwin to macOS.
-
Victor Stinner yazdı
check_environ() of distutils.utils now catchs KeyError on calling pwd.getpwuid(): don't create the HOME environment variable in this case.
-
Victor Stinner yazdı
Remove ctypes callback workaround: no longer create a callback at startup. Avoid SELinux alert on "import ctypes" and "import uuid".
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
uuid.uuid1() now calls time.time_ns() rather than int(time.time() * 1e9). Replace also int(nanoseconds/100) with nanoseconds // 100. Add an unit test.
-
- 17 Ara, 2018 12 kayıt (commit)
-
-
Victor Stinner yazdı
Rename test.bisect module to test.bisect_cmd to avoid conflict with bisect module when running directly a test like "./python Lib/test/test_xmlrpc.py".
-
Victor Stinner yazdı
Make platform.architecture() parsing of "file" command output more reliable: * Add the "-b" option to the "file" command to omit the filename; * Force the usage of the C locale; * Search also the "shared object" pattern. Co-Authored-By: Serhiy Storchaka <storchaka@gmail.com>
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Zackery Spytz yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Vajrasky Kok yazdı
-
-
Beomsoo Kim yazdı
I thought these simple changes doesn't need bpo number(Am I right..?). Please refer to the commit message for detail.
-
Victor Stinner yazdı
bpo-23451, bpo-22117: Python 3.5 requires Windows Vista or newer, time.monotonic() is now always system-wide.
-
Victor Stinner yazdı
TextTestRunner of unittest.runner now uses time.perf_counter() rather than time.time() to measure the execution time of a test: time.time() can go backwards, whereas time.perf_counter() is monotonic. Similar change made in libregrtest, pprint and random.
-