summaryrefslogtreecommitdiffstats
path: root/Modules/_winapi.c
Commit message (Expand)AuthorAgeFilesLines
* Use Unicode unconditionally for _winapi.CreateFile (GH-114611)Steve Dower2024-01-261-8/+9
* gh-114096: Restore privileges in _winapi.CreateJunction after creating the ju...Steve Dower2024-01-161-9/+25
* gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)Miss Islington (bot)2024-01-111-5/+162
* [3.11] gh-106844: Fix issues in _winapi.LCMapStringEx (GH-107832) (GH-107875)Serhiy Storchaka2023-08-121-12/+14
* [3.11] gh-105436: The environment block should end with two null wchar_t valu...Miss Islington (bot)2023-06-121-1/+13
* [3.11] bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684) (#9...Luke Garland2022-12-051-0/+25
* bpo-42658: Allow _winapi.LCMapStringEx to handle embedded nulls (GH-93688)Steve Dower2022-06-101-4/+10
* bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas...Steve Dower2022-06-101-0/+79
* Update URLs in comments and metadata to use HTTPS (GH-27458)Noah Kantrowitz2021-07-301-1/+1
* bpo-40263: Fixes an off-by-one error in _winapi_WaitForMultipleObjects_impl (...Ray Donnelly2021-07-281-1/+1
* bpo-44582: Accelerate mimetypes.init on Windows with a native accelerator (GH...Steve Dower2021-07-081-0/+108
* bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)Erlend Egeberg Aasland2021-06-171-1/+1
* bpo-42972: Fix GC assertion error in _winapi by untracking Overlapped earlier...Ken Jin2021-05-281-1/+1
* bpo-42972: Fully support GC for _winapi.Overlapped (GH-26381)Ken Jin2021-05-281-2/+46
* bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)Erlend Egeberg Aasland2021-04-301-1/+1
* bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)Victor Stinner2021-04-211-2/+2
* bpo-1635741: Port _winapi ext to multi-stage init (GH-21371)Mohamed Koubaa2020-08-131-73/+78
* bpo-36346: Make using the legacy Unicode C API optional (GH-21437)Serhiy Storchaka2020-07-101-8/+9
* bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)Victor Stinner2020-05-011-0/+8
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-3/+3
* Use calloc-based functions, not malloc. (GH-19152)Andy Lester2020-03-251-2/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-2/+2
* bpo-36935: Remove usage of the deprecated PyErr_SetFromWindowsErrWithUnicodeF...Zackery Spytz2019-05-301-2/+6
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-2/+45
* bpo-36888: Add multiprocessing.parent_process() (GH-13247)Thomas Moreau2019-05-201-0/+1
* bpo-36387: Refactor getenvironment() in _winapi.c. (GH-12482)Serhiy Storchaka2019-03-281-46/+34
* bpo-35813: Tests and docs for shared_memory (#11816)Davin Potts2019-02-241-1/+163
* bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1...Serhiy Storchaka2018-12-141-3/+4
* bpo-31446: Copy command line that should be passed to CreateProcessW(). (GH-1...Vladimir Matveev2018-12-141-4/+20
* bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (G...Alexander Buchkovsky2018-09-041-5/+5
* Remove unneeded PyErr_Clear() in _winapi_SetNamedPipeHandleState_impl() (GH-8...Zackery Spytz2018-08-251-2/+0
* bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win...Giampaolo Rodola2018-06-121-1/+2
* bpo-19764: Implemented support for subprocess.Popen(close_fds=True) on Window...Segev Finer2017-12-181-23/+225
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-131-2/+17
* bpo-31884 subprocess: add Windows constants for process priority (#4150)James2017-11-081-0/+12
* bpo-30768: Recompute timeout on interrupted lock (GH-4103)Victor Stinner2017-10-241-6/+4
* bpo-31471: Fix assertion failure in subprocess.Popen() on Windows, in case en...Oren Milman2017-09-141-1/+5
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-1/+1
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-061-1/+1
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-061-1/+1
* bpo-30745: Fix compiler warnings introduced in bpo-30730. (#2376)Serhiy Storchaka2017-06-241-2/+1
* bpo-30730: Prevent environment variables injection in subprocess on Windows. ...Serhiy Storchaka2017-06-231-5/+21
* bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)Serhiy Storchaka2017-04-191-6/+11
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-10/+10
* bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)Serhiy Storchaka2017-03-121-6/+6
* Issue #17599: Use unique _Py_REPARSE_DATA_BUFFER etc names to avoid conflictMartin Panter2016-08-041-4/+4
* - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-55/+52
|\
| * Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-55/+52
* | Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7.Serhiy Storchaka2016-06-091-2/+2
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
|/