summaryrefslogtreecommitdiff
path: root/PC/launcher.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-3/+3
* bpo-32560: inherit the py launcher's STARTUPINFO (GH-9000)Miss Islington (bot)2019-02-021-1/+1
* bpo-35811: Avoid propagating venv settings when launching via py.exe (GH-11677)Miss Islington (bot)2019-01-251-0/+11
* bpo-34977: Add Windows App Store package (GH-11027)Steve Dower2018-12-101-0/+1
* [3.7] bpo-34977: Use venv redirector instead of original python.exe on Window...Steve Dower2018-12-101-15/+208
* Revert "[3.7] bpo-34977: Add Windows App Store package (GH-10245)" (GH-11021)Victor Stinner2018-12-071-209/+15
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-0/+3
* [3.7] bpo-34977: Add Windows App Store package (GH-10245)Steve Dower2018-12-061-15/+206
* bpo-34532: Fixed exit code for py.exe list versions arg (GH-9039)Miss Islington (bot)2018-11-201-4/+5
* bpo-34565: Change a PC/launcher.c comment to accurately describe valid major ...Miss Islington (bot)2018-10-051-2/+2
* bpo-34062: Add missing launcher argument and make behavior consistent between...Miss Islington (bot)2018-08-311-8/+11
* Add missing va_end() calls in PC/launcher.c (GH-7690)Miss Islington (bot)2018-06-151-0/+2
* bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711)Stefan Grönke2017-09-251-4/+4
* bpo-30362 : Add list options to launcher. (#1578)Steve (Gadget) Barnes2017-06-281-43/+115
* bpo-30291 Changes to launcher so as to allow py -3-32, -2.7-64, 3.10, etc.Steve (Gadget) Barnes2017-05-121-40/+70
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-131-0/+1
* Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-111-1/+1
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-1/+1
* Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-061-1/+1
* Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-121-1/+1
|\
| * Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-121-1/+1
* | Issue #27140: Added BUILD_CONST_KEY_MAP opcode.Serhiy Storchaka2016-06-121-1/+1
* | Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.Serhiy Storchaka2016-05-241-1/+1
* | Issue #27064: The py.exe launcher now defaults to Python 3.Paul Moore2016-05-221-7/+14
* | Merge with 3.5Steve Dower2016-05-161-1/+1
|\ \ | |/
| * Fixes magic numbers for 3.6.Steve Dower2016-05-161-1/+1
* | Issue #26073: Updates magic number comment in _bootstrap_external.py and chan...Steve Dower2016-05-161-15/+15
|\ \ | |/
| * Issue #26073: Updates magic number comment in _bootstrap_external.py and chan...Steve Dower2016-05-161-15/+15
* | Issue #26073: Update the list of magic numbers in launcherSteve Dower2016-01-161-1/+4
|\ \ | |/
| * Issue #26073: Update the list of magic numbers in launcherSteve Dower2016-01-161-1/+4
| * Issue #26070: py.exe launcher fails to find in-place built binaries from earl...Mark Hammond2016-01-111-0/+3
* | Issue #26070: py.exe launcher fails to find in-place built binaries from earl...Mark Hammond2016-01-111-0/+3
* | Closes #25360: Merged fix from 3.5.Vinay Sajip2015-12-261-1/+1
|\ \ | |/
| * Fixes #25360: Search for pythonw.exe when in pyw.exe.Vinay Sajip2015-12-261-1/+1
* | Closes #25789: Improved buffering behaviour in launcher.Vinay Sajip2015-12-261-2/+3
* | Test UTF-32LE before UTF-16LE since UTF-16LE BOM is a prefix of UTF-32LE BOM.Serhiy Storchaka2015-12-181-2/+4
|\ \ | |/
| * Test UTF-32LE before UTF-16LE since UTF-16LE BOM is a prefix of UTF-32LE BOM.Serhiy Storchaka2015-12-181-2/+4
* | Issue #25889: Got rid of warning about mixing signed/unsigned char pointers.Serhiy Storchaka2015-12-181-2/+3
|/
* Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.Vinay Sajip2015-12-131-1/+1
|\
| * Fixes #25844: Corrected =/== typo potentially leading to crash in launcher.Vinay Sajip2015-12-131-2/+2
* | Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-3/+3
* | Removes unused format string insertion in launcher.c.Steve Dower2015-03-101-1/+1
|\ \ | |/
| * Removes unused format string insertion in launcher.c.Steve Dower2015-03-101-1/+1
* | Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual e...Steve Dower2015-02-261-4/+38
* | Issue #23260: Update Windows installerSteve Dower2015-02-051-6/+14
* | Changes %s to %ls in wprintf in launcher.c for C99 compatibility.Steve Dower2015-01-021-51/+51
|/
* Issue #19504: Used American spelling for 'customize'.Vinay Sajip2013-11-151-2/+2
|\
| * Issue #19504: Used American spelling for 'customize'.Vinay Sajip2013-11-151-2/+2
* | Closes #18491: Added script-wrapper functionality to launcher source (but not...Vinay Sajip2013-07-251-34/+138
* | Issue #17903: Added path search changes to launcher.Vinay Sajip2013-06-071-15/+41