summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Merge from 3.5Steve Dower2016-06-241-1/+4
|\
| * Preinstalls pip into the nuget package so that pip.exe is available after ↵Steve Dower2016-06-241-1/+4
| | | | | | | | installation.
* | Merge from 3.5Steve Dower2016-06-244-12/+103
|\ \ | |/
| * Adds scripts for producing Nuget packages.Steve Dower2016-06-244-12/+103
| |
* | Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now supportSerhiy Storchaka2016-06-091-26/+25
| | | | | | | | positional-only and keyword parameters in the same function.
* | Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7.Serhiy Storchaka2016-06-091-14/+23
| |
* | Issue #26305: Argument Clinic now escapes braces. No need to double them.Serhiy Storchaka2016-06-091-13/+14
|\ \ | |/
| * Issue #26305: Argument Clinic now escapes braces. No need to double them.Serhiy Storchaka2016-06-091-13/+14
| |
* | Issue #24225: Fix additional renamed module references.Ned Deily2016-06-041-1/+1
| |
* | regrtest doesn't ignore -j1 anymoreVictor Stinner2016-05-201-1/+1
| | | | | | | | | | | | | | | | * regrtest now uses subprocesses when the -j1 command line option is used: each test file runs in a fresh child process. Before, the -j1 option was ignored. * Tools/buildbot/test.bat script now uses -j1 by default to run each test file in fresh child process.
* | Issue #27053: Updates make_zip.py to correctly generate library ZIP file.Steve Dower2016-05-191-1/+1
|\ \ | |/
| * Issue #27053: Updates make_zip.py to correctly generate library ZIP file.Steve Dower2016-05-191-1/+1
| |
* | Merge launcher change from 3.5Steve Dower2016-05-186-12/+26
|\ \ | |/
| * Removes versioning from py.exe launcher installer and ensures that old ↵Steve Dower2016-05-186-12/+26
| | | | | | | | launchers are replaced by newer ones.
* | Merge with 3.5Steve Dower2016-05-171-1/+1
|\ \ | |/
| * Fixes unnecessary rebuild when building Windows releases with PGOSteve Dower2016-05-171-1/+1
| |
* | Removed unused imports.Serhiy Storchaka2016-04-241-1/+1
| |
* | Merge 3.5Serhiy Storchaka2016-04-241-10/+0
|\ \ | |/
| * Remove duplicated tests.Serhiy Storchaka2016-04-241-10/+0
| | | | | | | | There were duplicated methods with the same name and body.
* | Merge 3.5Victor Stinner2016-04-201-10/+4
|\ \ | |/
| * gdb/libpython.py: inline _type_void_ptr()Victor Stinner2016-04-201-10/+4
| | | | | | | | The function was only called in _sizeof_void_p()
* | Merge 3.5: Issue #26799Victor Stinner2016-04-201-14/+33
|\ \ | |/
| * python-gdb.py: get C types at runtimeVictor Stinner2016-04-201-14/+33
| | | | | | | | | | | | | | | | Issue #26799: Fix python-gdb.py: don't get once C types when the Python code is loaded, but get C types on demande. The C types can change if python-gdb.py is loaded before the Python executable. Patch written by Thomas Ilsche.
* | Update pygettext.py to get ride of impVictor Stinner2016-04-121-43/+8
| | | | | | | | | | | | Issue #26639: Replace imp with importlib in Tools/i18n/pygettext.py. Remove _get_modpkg_path(), replaced with importlib.util.find_spec().
* | Buildbots: change also Windows timeout from 1 hour to 15 minVictor Stinner2016-03-231-1/+1
| |
* | Issue #26581: Use the first coding cookie on a line, not the last one.Serhiy Storchaka2016-03-201-1/+1
|\ \ | |/
| * Issue #26581: Use the first coding cookie on a line, not the last one.Serhiy Storchaka2016-03-201-1/+1
| |
* | Merge for issue #26271Brett Cannon2016-03-181-2/+2
|\ \ | |/
| * Issue #26271: Fix the Freeze tool to use variables passed in from theBrett Cannon2016-03-181-2/+2
| | | | | | | | | | | | configure script related to compiler flags. Thanks to Daniel Shaulov for the bug report and patch.
* | Backs out buildbot clean trigger.Steve Dower2016-03-081-1/+1
|\ \ | |/
| * Backs out buildbot clean trigger.Steve Dower2016-03-081-1/+1
| |
* | Adds warning to prepare_ssl when nasm is not available.Steve Dower2016-03-081-1/+1
|\ \ | |/ | | | | Force clean externals on buildbots.
| * Adds warning to prepare_ssl when nasm is not available.Steve Dower2016-03-081-1/+1
| | | | | | | | Force clean of externals on buildbots.
* | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.pyBerker Peksag2016-03-061-3/+12
|\ \ | |/ | | | | Patch by Guo Ci Teo.
| * Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.pyBerker Peksag2016-03-061-3/+12
| | | | | | | | Patch by Guo Ci Teo.
* | Issue #26316: Merge Arg Clinic fix from 3.5Martin Panter2016-02-141-1/+1
|\ \ | |/
| * Issue #26316: Fix variable name typo in Argument ClinicMartin Panter2016-02-141-1/+1
| |
* | Issue #25985: sys.version_info is now used instead of sys.versionSerhiy Storchaka2016-02-112-3/+3
| | | | | | | | to format short Python version.
* | Add ast.ConstantVictor Stinner2016-01-251-2/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #26146: Add a new kind of AST node: ast.Constant. It can be used by external AST optimizers, but the compiler does not emit directly such node. An optimizer can replace the following AST nodes with ast.Constant: * ast.NameConstant: None, False, True * ast.Num: int, float, complex * ast.Str: str * ast.Bytes: bytes * ast.Tuple if items are constants too: tuple * frozenset Update code to accept ast.Constant instead of ast.Num and/or ast.Str: * compiler * docstrings * ast.literal_eval() * Tools/parser/unparse.py
* | Issue #26065: Excludes venv from library when generating embeddable distro.Steve Dower2016-01-161-0/+1
|\ \ | |/
| * Issue #26065: Excludes venv from library when generating embeddable distro.Steve Dower2016-01-161-0/+1
| |
* | Merge from 3.5 (including all NEWS entries)Steve Dower2015-12-025-103/+132
|\ \ | |/
| * Issue #25715: Python 3.5.1 installer shows wrong upgrade path and incorrect ↵Steve Dower2015-12-025-103/+132
| | | | | | | | logic for launcher detection.
* | Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failureMartin Panter2015-11-301-2/+2
| |
* | Merge from 3.5Steve Dower2015-11-232-2/+2
|\ \ | |/
| * Fixes upload directories for Windows installer.Steve Dower2015-11-232-2/+2
| |
* | Fixes installer not allowing launcher to be selected.Steve Dower2015-11-091-3/+3
|\ \ | |/
| * Fixes installer not allowing launcher to be selected.Steve Dower2015-11-091-3/+3
| |
* | Issue #25523: Merge a-to-an corrections from 3.5Martin Panter2015-11-021-2/+2
|\ \ | |/
| * Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-2/+2
| |\