- 11 Jan, 2019 5 commits
-
-
Michael Felt authored
This fixes ShareableTypeTests.test_int() in Lib/test/test__xxsubinterpreters.py.
-
Serhiy Storchaka authored
Use _PyArg_CheckPositional() and inlined code instead of PyArg_UnpackTuple() and _PyArg_UnpackStack() if all parameters are positional and use the "object" converter.
-
Serhiy Storchaka authored
-
Victor Stinner authored
Fix memory leaks in asyncio ProactorEventLoop on overlapped operation failures. Changes: * Implement the tp_traverse slot in the _overlapped.Overlapped type to help to break reference cycles and identify referrers in the garbage collector. * Always clear overlapped on failure: not only set type to TYPE_NOT_STARTED, but release also resources.
-
Joannah Nanjekye authored
Document that the time.CLOCK_MONOTONIC_RAW constant is now also available on macOS 10.12. Co-authored-by: Ricardo Fraile <rfraile@rfraile.eu>
-
- 10 Jan, 2019 7 commits
-
-
Bo Bayles authored
-
Joannah Nanjekye authored
-
Zackery Spytz authored
-
Pablo Galindo authored
-
Victor Stinner authored
* asyncio: __del__() keep reference to warnings.warn The __del__() methods of asyncio classes now keep a strong reference to the warnings.warn() to be able to display the ResourceWarning warning in more cases. Ensure that the function remains available if instances are destroyed late during Python shutdown (while module symbols are cleared). * Rename warn parameter to _warn "_warn" name is a hint that it's not the regular warnings.warn() function.
-
Victor Stinner authored
* _wait_for_handle(), _register() and _unregister() methods of IocpProactor now raise an exception if closed * Add "closed" to IocpProactor.__repr__() * Simplify IocpProactor.close()
-
antektek authored
-
- 09 Jan, 2019 6 commits
-
-
Miro Hrončok authored
-
Andre Delfino authored
-
Charles-Axel Dein authored
-
Pablo Galindo authored
-
Terry Jan Reedy authored
-
Sanyam Khurana authored
-
- 08 Jan, 2019 8 commits
-
-
Victor Stinner authored
Fix a memory leak in asyncio in the ProactorEventLoop when ReadFile() or WSASend() overlapped operation fail immediately: release the internal buffer.
-
Steve Dower authored
Also adds extra steps to the CI build for Windows on Azure Pipelines to validate that the various layouts at least execute.
-
Vladimir Matveev authored
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 authored
-
Pierre Glaser authored
-
Victor Stinner authored
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 authored
This module is built by _asyncio.vcxproj and does not need to be included in pythoncore.
-
Victor Stinner authored
test.pythoninfo now logs information of all clocks, not only time.time() and time.perf_counter().
-
- 07 Jan, 2019 3 commits
-
-
Victor Stinner authored
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 authored
-
Xtreak authored
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 Jan, 2019 4 commits
-
-
cclauss authored
-
Cheryl Sabella authored
* 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 authored
-
Tal Einat authored
-
- 05 Jan, 2019 1 commit
-
-
Vladimir Matveev authored
-
- 04 Jan, 2019 1 commit
-
-
- 03 Jan, 2019 3 commits
-
-
Harmandeep Singh authored
bpo-31450: Remove documentation mentioning that subprocess's child_traceback is available with the parent process (GH-11422)
-
Emmanuel Arias authored
-
Terry Jan Reedy authored
-
- 02 Jan, 2019 2 commits
-
-
Harmandeep Singh authored
-
Mickaël Schoentgen authored
closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11411)
-