summaryrefslogtreecommitdiffstats
path: root/Modules/overlapped.c
Commit message (Expand)AuthorAgeFilesLines
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011)Erik Soma2024-03-231-0/+1
* gh-116773: Ensure overlapped objects on Windows are not deallocated too early...jkriegshauser2024-03-201-0/+18
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-201-2/+1
* gh-108494: Argument Clinic: inline parsing code for positional-only parameter...Serhiy Storchaka2023-09-031-7/+9
* gh-107913: Fix possible losses of OSError error codes (GH-107930)Serhiy Storchaka2023-08-261-1/+2
* gh-106320: Remove private _PyLong converter functions (#108499)Victor Stinner2023-08-261-1/+4
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-6/+6
* gh-86493: Modernize modules initialization code (GH-106858)Serhiy Storchaka2023-07-251-6/+1
* gh-105156: Argument Clinic avoids Py_UNICODE type (#105161)Victor Stinner2023-05-311-4/+4
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-99300: Use Py_NewRef() in Modules/ directory (#99469)Victor Stinner2022-11-141-8/+4
* gh-98793: Fix typecheck in `overlapped.c` (#98835)Charlie Zhao2022-10-301-4/+4
* gh-95417: Quick fix for "ULONG_PTR differs in levels of indirection from void...Oleg Iarygin2022-08-011-1/+9
* gh-94512: Fix forced arg format in AC-processed overlapped (GH-94516)Oleg Iarygin2022-07-281-11/+17
* gh-94401: Remove unneeded overlapped module state (#94403)Erlend Egeberg Aasland2022-06-291-43/+6
* gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)Inada Naoki2022-05-121-13/+1
* bpo-47003: Cleanup _overlapped module (GH-31848)Andrew Svetlov2022-03-131-60/+53
* bpo-46805: Add low level UDP socket functions to asyncio (GH-31455)Alex Grönholm2022-03-131-4/+128
* Remove Python 3.3 compatibility code from overlapped.c (GH-31049)Kumar Aditya2022-02-021-6/+0
* bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)Erlend Egeberg Aasland2021-06-171-1/+1
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1
* bpo-1635741: Port _overlapped module to multi-phase init (GH-22051)Mohamed Koubaa2020-09-071-67/+106
* bpo-40150: Fix mismatched argument in RegisterWaitForSingleObject() call (GH-...Zackery Spytz2020-07-151-3/+2
* bpo-36346: Make using the legacy Unicode C API optional (GH-21437)Serhiy Storchaka2020-07-101-15/+49
* bpo-20179: Convert the _overlapped module to the Argument Clinic (GH-14275)Zackery Spytz2020-07-101-409/+456
* bpo-40898: Remove redundant if statements in tp_traverse (GH-20692)Hai Shi2020-06-071-6/+2
* bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121)Kjell Braden2020-05-181-5/+2
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119)Dong-hee Na2020-03-241-4/+2
* bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (G...Zackery Spytz2019-09-091-1/+2
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-2/+2
* bpo-29883: Asyncio proactor udp (GH-13440)Andrew Svetlov2019-05-281-16/+356
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-0/+2
* bpo-32710: Fix _overlapped.Overlapped memory leaks (GH-11489)Victor Stinner2019-01-111-24/+54
* bpo-32710: Fix leak in Overlapped_WSASend() (GH-11469)Victor Stinner2019-01-081-0/+2
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-291-1/+1
* bpo-32622: Native sendfile on windows (#5565)Andrew Svetlov2018-02-251-2/+62
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+1
* Fix trailing whitespaces in C files. (#4130)Serhiy Storchaka2017-10-261-1/+1
* bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)Antoine Pitrou2017-10-191-58/+156
* bpo-28261: Fixed err msgs where PyArg_ParseTuple is used to parse normal tupl...Oren Milman2017-08-201-2/+7
* fix grammr in error messages in overlapped.c (GH-3095)Oren Milman2017-08-151-2/+2
* Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-5/+5
* asyncio: sync overlapped.c with GitHubVictor Stinner2016-04-011-0/+6
* Fix usage of PyMem_Malloc() in overlapped.cVictor Stinner2016-03-161-3/+6
* asyncio, _overlapped.ConnectPipe(): release the GILVictor Stinner2015-01-261-0/+3
* asyncio, Tulip issue 204: Fix IocpProactor.recv()Victor Stinner2015-01-261-2/+2
* asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe()Victor Stinner2015-01-221-2/+2
* Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe()Victor Stinner2015-01-221-93/+22