- 10 Ock, 2019 2 kayıt (commit)
-
-
Victor Stinner yazdı
* _wait_for_handle(), _register() and _unregister() methods of IocpProactor now raise an exception if closed * Add "closed" to IocpProactor.__repr__() * Simplify IocpProactor.close()
-
antektek yazdı
-
- 09 Ock, 2019 6 kayıt (commit)
-
-
Miro Hrončok yazdı
-
Andre Delfino yazdı
-
Charles-Axel Dein yazdı
-
Pablo Galindo yazdı
-
Terry Jan Reedy yazdı
-
Sanyam Khurana yazdı
-
- 08 Ock, 2019 8 kayıt (commit)
-
-
Victor Stinner yazdı
Fix a memory leak in asyncio in the ProactorEventLoop when ReadFile() or WSASend() overlapped operation fail immediately: release the internal buffer.
-
Steve Dower yazdı
Also adds extra steps to the CI build for Windows on Azure Pipelines to validate that the various layouts at least execute.
-
Vladimir Matveev yazdı
As in title, expose C `raise` function as `raise_function` in `signal` module. Also drop existing `raise_signal` in `_testcapi` module and replace all usages with new function. https://bugs.python.org/issue35568
-
chrullrich yazdı
-
Pierre Glaser yazdı
-
Victor Stinner yazdı
bpo-32622, bpo-35682: Fix asyncio.ProactorEventLoop.sendfile(): don't attempt to set the result of an internal future if it's already done. Fix asyncio _ProactorBasePipeTransport._force_close(): don't set the result of _empty_waiter if it's already done.
-
Gregory Szorc yazdı
This module is built by _asyncio.vcxproj and does not need to be included in pythoncore.
-
Victor Stinner yazdı
test.pythoninfo now logs information of all clocks, not only time.time() and time.perf_counter().
-
- 07 Ock, 2019 3 kayıt (commit)
-
-
Victor Stinner yazdı
test_asyncio/test_sendfile.py now resets the event loop policy using tearDownModule() as done in other tests, to prevent a warning when running tests on Windows.
-
Raymond Hettinger yazdı
-
Xtreak yazdı
Fix an assertion error in format() in debug build for floating point formatting with "n" format, zero padding and small width. Release build is not impacted. Patch by Karthikeyan Singaravelan.
-
- 06 Ock, 2019 4 kayıt (commit)
-
-
cclauss yazdı
-
Cheryl Sabella yazdı
* bpo-35660: IDLE: Remove * import from window.py * sys was being imported through the *, so also added an import sys. * Update 2019-01-04-19-14-29.bpo-35660.hMxI7N.rst Anyone who wants details can check the issue, where I added the point about the sys import bug.
-
Anthony Shaw yazdı
-
Tal Einat yazdı
-
- 05 Ock, 2019 1 kayıt (commit)
-
-
Vladimir Matveev yazdı
-
- 04 Ock, 2019 1 kayıt (commit)
-
-
- 03 Ock, 2019 3 kayıt (commit)
-
-
Harmandeep Singh yazdı
bpo-31450: Remove documentation mentioning that subprocess's child_traceback is available with the parent process (GH-11422)
-
Emmanuel Arias yazdı
-
Terry Jan Reedy yazdı
-
- 02 Ock, 2019 8 kayıt (commit)
-
-
Harmandeep Singh yazdı
-
Mickaël Schoentgen yazdı
closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11411)
-
Benjamin Peterson yazdı
-
Serhiy Storchaka yazdı
Revert "bpo-35603: Escape table header of make_table output that can cause potential XSS. (GH-11341)" (GH-11356) This reverts commit 78de0119.
-
Stefan Behnel yazdı
* bpo-35588: Implement mod and divmod operations for Fraction type by spelling out the numerator/denominator calculation, instead of instantiating and normalising Fractions along the way. This speeds up '%' and divmod() by 2-3x. * bpo-35588: Also reimplement Fraction.__floordiv__() using integer operations to make it ~4x faster. * Improve code formatting. Co-Authored-By:
scoder <stefan_ml@behnel.de> * bpo-35588: Fix return type of divmod(): the result of the integer division should be an integer. * bpo-35588: Further specialise __mod__() and inline the original helper function _flat_divmod() since it's no longer reused. * bpo-35588: Add some tests with large numerators and/or denominators. * bpo-35588: Use builtin "divmod()" function for implementing __divmod__() in order to simplify the implementation, even though performance results are mixed. * Rremove accidentally added empty line. * bpo-35588: Try to provide more informative output on test failures. * bpo-35588: Improve wording in News entry. Co-Authored-By:
scoder <stefan_ml@behnel.de> * Remove stray space.
-
animalize yazdı
_Py_HashBytes() does the check for empty string.
-
sth yazdı
There is already a `Py_ssize_t i` defined at function scope that is used for similar loops. By removing the local `int i` declaration that `i` is used, which has the appropriate type.
-
Suriyaa ✌️️ yazdı
-
- 31 Ara, 2018 4 kayıt (commit)
-
-
Cheryl Sabella yazdı
Move translate_key() and constant tuples to module level. Inline the remnant one-line function.
-
Tal Einat yazdı
-
Serhiy Storchaka yazdı
* Replace the docstrings cache with sys.intern(). * Improve tests. * Unify names of tp_descr_get and tp_descr_set functions.
-
Serhiy Storchaka yazdı
-