- 19 Tem, 2017 1 kayıt (commit)
-
-
Ammar Askar yazdı
-
- 18 Tem, 2017 5 kayıt (commit)
-
-
Louie Lu yazdı
Patch by Louie Lu.
-
Steve Dower yazdı
Fix logic for retrying nuget.exe download with Python. Add support for HOST_PYTHON variable. Clear internal environment variables used in find_python.bat Use HOST_PYTHON as the actual Python if it is recent enough. Adds HOST_PYTHON variable to AppVeyor configuration
-
Xiang Zhang yazdı
-
Vitor Pereira yazdı
* bpo-30794: added kill() method to multiprocessing.Process * Added entries to documentation and NEWS * Refactored test_terminate and test_kill * Fix SIGTERM and SIGKILL being used on Windows for the tests * Added "versionadded" marker to the documentation * Fix trailing whitespace in doc
-
Antoine Pitrou yazdı
* Remove obsolete fallback code in readline module * Add NEWS * Remove obsolete include * Fix macro on Windows
-
- 17 Tem, 2017 4 kayıt (commit)
-
-
Steve Dower yazdı
* bpo-30450: Fall back to git.exe if no Python is found. * Also check whether git.exe is on PATH if it will be used.
-
Steve Dower yazdı
* bpo-30450: Adds alternate download approach for nuget.exe * Whitespace fix.
-
Antoine Pitrou yazdı
* Improve signal delivery Avoid using Py_AddPendingCall from signal handler, to avoid calling signal-unsafe functions. * Remove unused function * Improve comments * Use _Py_atomic API for concurrency-sensitive signal state * Add blurb
-
Steve Dower yazdı
Updates ssl and tkinter projects to use pre-built externals
-
- 16 Tem, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
terryjreedy yazdı
* Add section to idlelib/idle-test/README.txt. * Include check that branches are taken both ways. * Exclude IDLE-specific code that does not run during unit tests.
-
- 15 Tem, 2017 3 kayıt (commit)
-
-
Ned Deily yazdı
-
Nick Coghlan yazdı
AIX uses iso8859-1 in the C locale, not ASCII AIX doesn't currently provide any of the locale coercion locales, but we leave locale coercion enabled in case one gets added in the future.
-
terryjreedy yazdı
-
- 14 Tem, 2017 4 kayıt (commit)
-
-
Łukasz Rogalski yazdı
-
terryjreedy yazdı
-
csabella yazdı
The will help writing dialog improvements and splitting the class into multiple classes. Original patch by Cheryl Sabella.
-
Louie Lu yazdı
Initial patch by Louie Lu.
-
- 13 Tem, 2017 5 kayıt (commit)
-
-
Segev Finer yazdı
bpo-30731: python.manifest fix
-
Stefan Krah yazdı
-
Serhiy Storchaka yazdı
encoder and decoder.
-
Segev Finer yazdı
when pass bad strict argument.
-
Trey Hunner yazdı
-
- 12 Tem, 2017 4 kayıt (commit)
-
-
Brett Cannon yazdı
Changed "subbset" to "subset". Also made the sentences read like things were happening instead of stating what the code should do (in other words more descriptive than prescriptive).
-
Louie Lu yazdı
Patch by Louie Lu.
-
Victor Stinner yazdı
tearDown() now clears explicitly the self.server variable to make sure that the thread is completely cleared when tearDownClass() checks if all threads have been cleaned up. Fix the following warning: $ ./python -m test --fail-env-changed -m test.test_os.TestSendfile.test_keywords -R 3:1 test_os (...) Warning -- threading_cleanup() failed to cleanup 0 threads after 3 sec (count: 0, dangling: 2) (...) Tests result: ENV CHANGED
-
Serhiy Storchaka yazdı
instead of failing with SystemError. Relative import from non-package now fails with ImportError rather than SystemError.
-
- 11 Tem, 2017 6 kayıt (commit)
-
-
csabella yazdı
Also improve test of config.ConfigChanges.delete_section. Original patch by Cheryl Sabella.
-
Segev Finer yazdı
-
csabella yazdı
Patch by Cheryl Sabella.
-
terryjreedy yazdı
-
Serhiy Storchaka yazdı
Based on patch by Victor Stinner.
-
Serhiy Storchaka yazdı
called with bytes-like argument.
-
- 10 Tem, 2017 6 kayıt (commit)
-
-
Victor Stinner yazdı
* Rewrite importlib _get_module_lock(): it is now responsible to hold the imp lock directly. * _find_and_load() now holds the module lock to check if name is in sys.modules to prevent a race condition
-
Victor Stinner yazdı
Handle getattr(copy, 'deepcopy') error in _elementtree module initialization.
-
csabella yazdı
One is a duplicate, one is set but cannot be altered by users. Patch by Cheryl Sabella.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
multiprocessing.Queue.join_thread() now waits until the thread completes, even if the thread was started by the same process which created the queue. Fix the following warning which occurs randomly when running test_handle_called_with_mp_queue of test_logging.QueueListenerTest: Warning -- threading_cleanup() failed to cleanup -1 threads after 4 sec (count: 0, dangling: 1)
-
Serhiy Storchaka yazdı
-