summaryrefslogtreecommitdiff
path: root/PC
Commit message (Expand)AuthorAgeFilesLines
* Update copyright year to 2022. (GH-30335) (GH-31477)Miss Islington (bot)2022-02-211-1/+1
* Bring Python into the new year. (GH-24036) (GH-24052)Miss Islington (bot)2021-01-011-1/+1
* bpo-41304: Ensure python3x._pth is loaded on Windows (GH-21495) (#21499)Steve Dower2020-07-151-1/+1
* [3.7] bpo-29778: Ensure python3.dll is loaded from correct locations when Pyt...Steve Dower2020-07-061-68/+75
* bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974)Steve Dower2020-05-182-3/+3
* bpo-40158: Fix CPython MSBuild Properties in NuGet Package (GH-19343)Miss Islington (bot)2020-04-031-2/+1
* bpo-39930: Convert error to warning for more silent failure (GH-18921)Miss Islington (bot)2020-03-111-0/+4
* [3.7] bpo-39794: Add --without-decimal-contextvar (GH-18702)Stefan Krah2020-02-291-0/+4
* [3.7] bpo-39401: Avoid unsafe DLL load on Windows 7 and earlier (GH-18231) (G...Steve Dower2020-01-291-2/+4
* bpo-32587: Fixes unsafe downcast in PC/winreg.c (GH-15766)Miss Islington (bot)2019-09-091-1/+1
* bpo-37705: Improve the implementation of winerror_to_errno() (GH-15623)Miss Islington (bot)2019-09-092-109/+137
* bpo-32587: Make winreg.REG_MULTI_SZ support zero-length strings (GH-13239)Miss Islington (bot)2019-09-091-16/+25
* bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (G...Miss Islington (bot)2019-09-091-1/+2
* bpo-27961: Remove leftovers from the times when long long wasn't required (GH...Miss Islington (bot)2019-08-221-1/+1
* [3.7] bpo-37730: Fix usage of NotImplemented instead of NotImplementedError i...Serhiy Storchaka2019-08-042-10/+10
* bpo-37369: Fix path handling when python.exe is used as a symlink (GH-14461)Steve Dower2019-06-281-44/+62
* bpo-37369: Fixes path for sys.executable when running from the Microsoft Stor...Steve Dower2019-06-282-131/+99
* bpo-36672: Fix a compiler warning in winreg.SetValue() (GH-12882)Miss Islington (bot)2019-04-221-1/+1
* bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687)Miss Islington (bot)2019-04-221-1/+1
* bpo-36649: Remove trailing spaces for registry keys when installed via the St...Miss Islington (bot)2019-04-171-7/+6
* bpo-36010: Add venv to the nuget distribution (GH-12367)Miss Islington (bot)2019-03-301-1/+9
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-3/+3
* bpo-36140: Fix an incorrect check in msidb_getsummaryinformation() (GH-12074)Miss Islington (bot)2019-03-071-1/+1
* bpo-24643: Fix "GH-define timezone _timezone" clashes on Windows (GH-12019)Miss Islington (bot)2019-02-251-7/+0
* bpo-34691: Compile _contextvars module into main Python library (GH-11741)Miss Islington (bot)2019-02-021-0/+4
* bpo-32560: inherit the py launcher's STARTUPINFO (GH-9000)Miss Islington (bot)2019-02-021-1/+1
* bpo-1104: msilib.SummaryInfo.GetProperty() truncates the string by one charac...Miss Islington (bot)2019-02-021-10/+19
* bpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)Miss Islington (bot)2019-01-251-0/+11
* bpo-35683: Improve Azure Pipelines steps (GH-11493)Steve Dower2019-01-221-0/+2
* bpo-35596: Use unchecked PYCs for the embeddable distro to avoid zipimport re...Miss Islington (bot)2019-01-081-7/+13
* bpo-35596: Fix vcruntime140.dll being added to embeddable distro multiple tim...Miss Islington (bot)2018-12-271-1/+1
* bpo-11566: Extension build errors on Windows for _hypot (GH-11283)Miss Islington (bot)2018-12-211-6/+0
* [3.7] bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC....Serhiy Storchaka2018-12-142-75/+83
* bpo-34977: Remove unused preprocessor definition (GH-11092)Miss Islington (bot)2018-12-101-12/+0
* bpo-34977: Add Windows App Store package (GH-11027)Steve Dower2018-12-1026-0/+2195
* [3.7] bpo-34977: Use venv redirector instead of original python.exe on Window...Steve Dower2018-12-102-16/+215
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Miss Islington (bot)2018-12-081-3/+7
* Revert "[3.7] bpo-34977: Add Windows App Store package (GH-10245)" (GH-11021)Victor Stinner2018-12-0727-2393/+16
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-072-2/+13
* [3.7] bpo-34977: Add Windows App Store package (GH-10245)Steve Dower2018-12-0627-16/+2390
* bpo-34532: Fixed exit code for py.exe list versions arg (GH-9039)Miss Islington (bot)2018-11-201-4/+5
* bpo-35067: Remove _distutils_findvs and use vswhere.exe instead. (GH-10095)Miss Islington (bot)2018-10-277-1089/+0
* bpo-34565: Change a PC/launcher.c comment to accurately describe valid major ...Miss Islington (bot)2018-10-051-2/+2
* bpo-34770: Fix a possible null pointer dereference in pyshellext.cpp (GH-9497)Miss Islington (bot)2018-09-241-0/+5
* bpo-23855: Add missing NULL checks for malloc() in _msi.c (GH-9038)Miss Islington (bot)2018-09-071-0/+7
* bpo-34062: Add missing launcher argument and make behavior consistent between...Miss Islington (bot)2018-08-311-8/+11
* bpo-34217: Use lowercase header for Windows (GH-8453)Miss Islington (bot)2018-07-291-1/+1
* Add missing va_end() calls in PC/launcher.c (GH-7690)Miss Islington (bot)2018-06-151-0/+2
* [3.7] Add missed details of the C API introduced in 3.7. (GH-7047) (GH-7061)Serhiy Storchaka2018-05-221-0/+2
* bpo-32604: Remove xid registry. (#6813)Eric Snow2018-05-151-3/+1