summaryrefslogtreecommitdiffstats
path: root/PC
Commit message (Collapse)AuthorAgeFilesLines
* [3.6] Fixes reference leak (GH-3457) (#3460)Miss Islington (bot)2017-09-081-1/+9
| | | (cherry picked from commit af8d6b90723daa943c5cd0a38ee7564790d8687a)
* [3.6] bpo-30389 Adds detection of VS 2017 to distutils._msvccompiler GH-1632 ↵Steve Dower2017-09-078-1/+1089
| | | | (#3425)
* bpo-30731: python.manifest fix (#2328) (#2699)Steve Dower2017-07-131-5/+5
| | | bpo-30731: python.manifest fix
* [3.6] bpo-13617: Reject embedded null characters in wchar* strings. ↵Serhiy Storchaka2017-06-281-1/+5
| | | | | | | | | | (GH-2302) (#2462) Based on patch by Victor Stinner. Add private C API function _PyUnicode_AsUnicode() which is similar to PyUnicode_AsUnicode(), but checks for null characters.. (cherry picked from commit f7eae0adfcd4c50034281b2c69f461b43b68db84)
* [3.6] bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). ↵Serhiy Storchaka2017-06-271-1/+1
| | | | | | | (GH-2285) (#2443) Raise a ValueError if the second argument is NULL and the wchar_t\* string contains null characters.. (cherry picked from commit e613e6add5f07ff6aad5802924596b631b707d2a)
* bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on ↵Steve Dower2017-06-192-7/+8
| | | | | | vcvarsall.bat (#2252) (#2280) * Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat Also fixes bdist_wininst.vcxproj to use correct version in generated name.
* [3.6] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2083)Zachary Ware2017-06-101-22/+22
| | | Also updates checked-in line endings on some files
* bpo-29770: remove outdated PYO related info (GH-590) (GH-612)Xiang Zhang2017-03-111-2/+2
|
* Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev)Steve Dower2017-02-041-1/+1
|
* Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-041-4/+43
|\
| * Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-041-12/+46
| |
* | Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro ifSerhiy Storchaka2017-01-251-0/+2
|\ \ | |/ | | | | | | Py_LIMITED_API is not set or set to the value between 0x03050400 and 0x03060000 (not including) or 0x03060100 or higher.
| * Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro ifSerhiy Storchaka2017-01-251-0/+2
| | | | | | | | | | Py_LIMITED_API is not set or set to the value between 0x03050400 and 0x03060000 (not including) or 0x03060100 or higher.
* | Issue #23903: Added missed Windows-specific names to PC/python3.def.Serhiy Storchaka2016-12-271-0/+13
|\ \ | |/
| * Issue #23903: Added missed Windows-specific names to PC/python3.def.Serhiy Storchaka2016-12-271-0/+13
| |
* | Issue #23903: Added missed names to PC/python3.def.Serhiy Storchaka2016-12-271-0/+64
|\ \ | |/
| * Issue #23903: Added missed names to PC/python3.def.Serhiy Storchaka2016-12-271-0/+59
| |
* | Issue #23903: Fixed errors and remove non-existing names in python3.def.Serhiy Storchaka2016-12-271-5/+3
|\ \ | |/
| * Issue #23903: Fixed errors and remove non-existing names in python3.def.Serhiy Storchaka2016-12-271-5/+3
| |
* | Sort and remove duplicates from PC/python3.def (issue #23903).Serhiy Storchaka2016-12-231-25/+24
|\ \ | |/
| * Sort and remove duplicates from PC/python3.def (issue #23903).Serhiy Storchaka2016-12-231-25/+24
| |
* | Issue #25778: winreg does not truncase string correctly (Patch by Eryk Sun)Steve Dower2016-12-171-7/+6
| |
* | Issue #26071: Fixes preprocessor definition and rebuilds ↵Steve Dower2016-12-131-1/+1
|\ \ | |/ | | | | wininst-14.0[-amd64].exe
| * Issue #26071: Fixes preprocessor definition and rebuilds ↵Steve Dower2016-12-131-1/+1
| | | | | | | | wininst-14.0[-amd64].exe
* | Issue #28522: Fixes mishandled buffer reallocation in getpathp.cSteve Dower2016-10-271-4/+15
| |
* | Issue #28217: Adds _testconsole module to test console input. Fixes some ↵Steve Dower2016-10-032-0/+213
| | | | | | | | issues found by the tests.
* | Issue #28137: Renames Windows path file to ._pthSteve Dower2016-09-171-35/+78
| | | | | | | | Issue #28138: Windows ._pth file should allow import site
* | Issue #28139: Merge indentation fixes from 3.5 into 3.6Martin Panter2016-09-171-9/+9
|\ \ | |/
| * Issue #28139: Fix messed up indentationMartin Panter2016-09-171-9/+9
| | | | | | | | | | Also update the classmethod and staticmethod doc strings and comments to match the RST documentation.
* | Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-111-1/+1
| | | | | | | | | | | | | | | | | | The __class__ cell used by zero-argument super() is now initialized from type.__new__ rather than __build_class__, so class methods relying on that will now work correctly when called from metaclass methods during class creation. Patch by Martin Teichmann.
* | One more spelling fixMartin Panter2016-09-101-1/+1
| |
* | Issue #27810: Rerun Argument Clinic on all modulesVictor Stinner2016-09-102-26/+26
| |
* | Issue #27705: Update message in validate_ucrtbase.pySteve Dower2016-09-101-2/+3
|\ \ | |/
| * Issue #27705: Update message in validate_ucrtbase.pySteve Dower2016-09-101-2/+3
| |
* | Issue #28046: Remove platform-specific directories from sys.pathZachary Ware2016-09-101-2/+2
| |
* | Fix call to PathCombineW.Steve Dower2016-09-091-1/+1
| |
* | Issue #27874: Allows use of pythonXX.zip file as landmark on WindowsSteve Dower2016-09-091-15/+20
| |
* | Merge with 3.5Steve Dower2016-09-091-3/+17
|\ \ | |/
| * Issue #24594: Validates persist parameter when opening MSI databaseSteve Dower2016-09-091-3/+17
| |
* | Changes pyvenv.cfg trick into an actual sys.path file.Steve Dower2016-09-091-66/+115
| |
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-1/+1
| | | | | | | | Patch by Ivan Levkivskyi.
* | Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-081-8/+3
| |
* | clinic: PY_LONG_LONG -> long longBenjamin Peterson2016-09-082-8/+8
| |
* | hardcode sizeof(_Bool) on windowsBenjamin Peterson2016-09-071-0/+3
| |
* | Issue #16113: Add SHA-3 and SHAKE support to hashlib module.Christian Heimes2016-09-071-0/+2
| |
* | Issue #27731: Opt-out of MAX_PATH on Windows 10Steve Dower2016-09-071-1/+6
| |
* | Issue #26798: Hello Winndows, my old friend. I've come to fix blake2 for you ↵Christian Heimes2016-09-061-0/+2
| | | | | | | | again.
* | Closes #27982: Allow keyword arguments to winsound functionsZachary Ware2016-09-062-27/+30
| |
* | replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-7/+7
| |
* | Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-1/+1
| |