summaryrefslogtreecommitdiffstats
path: root/PC
Commit message (Expand)AuthorAgeFilesLines
* bpo-36672: Fix a compiler warning in winreg.SetValue() (GH-12882)Zackery Spytz2019-04-221-1/+1
* bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687)Zackery Spytz2019-04-221-1/+1
* bpo-36649: Remove trailing spaces for registry keys when installed via the St...Steve Dower2019-04-171-7/+6
* bpo-36509: Add iot layout for Windows IoT containers (GH-12663)Paul Monson2019-04-122-2/+18
* bpo-36010: Add venv to the nuget distribution (GH-12367)Paul Moore2019-03-301-1/+9
* bpo-35947: Update Windows to the current version of libffi (GH-11797)Paul Monson2019-03-291-1/+1
* bpo-8677: use PY_DWORD_MAX instead of INT_MAX (GH-12469)Inada Naoki2019-03-201-5/+3
* bpo-8677: use PY_SSIZE_T_CLEAN in PC/winreg.c (GH-12466)Inada Naoki2019-03-201-0/+6
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...Serhiy Storchaka2019-03-143-21/+79
* bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)Serhiy Storchaka2019-03-131-3/+3
* bpo-36140: Fix an incorrect check in msidb_getsummaryinformation() (GH-12074)Zackery Spytz2019-03-071-1/+1
* bpo-24643: Fix "#define timezone _timezone" clashes on Windows (GH-12019)Zackery Spytz2019-02-251-7/+0
* bpo-35976: Enable Windows projects to build with platform ARM32 (GH-11825)Paul Monson2019-02-141-1/+1
* bpo-34691: Compile _contextvars module into main Python library (GH-11741)Steve Dower2019-02-021-0/+4
* bpo-32560: inherit the py launcher's STARTUPINFO (GH-9000)Shiva Saxena2019-02-021-1/+1
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-021-0/+8
* bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one charac...Tzu-ping Chung2019-02-021-10/+19
* bpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)Steve Dower2019-01-251-0/+11
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-241-0/+1
* bpo-35683: Improve Azure Pipelines steps (GH-11493)Steve Dower2019-01-221-0/+2
* bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...Serhiy Storchaka2019-01-112-18/+100
* bpo-35596: Use unchecked PYCs for the embeddable distro to avoid zipimport re...Steve Dower2019-01-081-7/+13
* bpo-35596: Fix vcruntime140.dll being added to embeddable distro multiple tim...Steve Dower2018-12-271-1/+1
* bpo-23867: Argument Clinic: inline parsing code for a single positional param...Serhiy Storchaka2018-12-252-14/+64
* bpo-11566: Extension build errors on Windows for _hypot (GH-11283)Matt McCormick2018-12-221-6/+0
* bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1...Serhiy Storchaka2018-12-142-75/+83
* bpo-34977: Remove unused preprocessor definition (GH-11092)Steve Dower2018-12-111-12/+0
* bpo-34977: Add Windows App Store package (GH-11027)Steve Dower2018-12-1125-0/+2194
* bpo-34977: Use venv redirector instead of original python.exe on Windows (GH-...Steve Dower2018-12-102-16/+215
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Zackery Spytz2018-12-081-3/+7
* Revert "bpo-34977: Add Windows App Store package (GH-10245)" (GH-11019)Victor Stinner2018-12-0727-2392/+16
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-072-2/+13
* bpo-34977: Add Windows App Store package (GH-10245)Steve Dower2018-12-0727-16/+2389
* bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ...Serhiy Storchaka2018-11-274-31/+31
* bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)Victor Stinner2018-11-231-1/+1
* bpo-34532: Fixed exit code for py.exe list versions arg (GH-9039)Brendan Gerrity2018-11-201-4/+5
* bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...Steve Dower2018-11-181-0/+4
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-1/+1
* Replace dead code with an assertion in winreg.c. (GH-10028)Zackery Spytz2018-11-081-2/+1
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-1/+1
* bpo-35067: Remove _distutils_findvs and use vswhere.exe instead. (GH-10095)Steve Dower2018-10-277-1089/+0
* bpo-35059: Convert PyObject_INIT() to function (GH-10077)Victor Stinner2018-10-261-1/+1
* bpo-34770: Fix a possible null pointer dereference in pyshellext.cpp (GH-9497)Zackery Spytz2018-09-251-0/+5
* Simplify PyInit_timezone. (GH-9467)Benjamin Peterson2018-09-211-0/+4
* bpo-25711: Rewrite zipimport in pure Python. (GH-6809)Serhiy Storchaka2018-09-181-2/+0
* bpo-23855: Add missing NULL checks for malloc() in _msi.c (GH-9038)Zackery Spytz2018-09-071-0/+7
* bpo-34565: Change a PC/launcher.c comment to accurately describe valid major ...Brendan Gerrity2018-09-041-2/+2
* bpo-34062: Add missing launcher argument and make behavior consistent between...Brendan Gerrity2018-08-311-8/+11
* bpo-34217: Use lowercase header for Windows (GH-8453)erikjanss2018-07-251-1/+1
* bpo-34170: Add _PyCoreConfig.isolated (GH-8417)Victor Stinner2018-07-241-2/+2