summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Remove legacy "from __future__ import with_statement" lines.Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-084-5/+1
|
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-0815-40/+40
| | | | | | | And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter.
* clinic: PY_LONG_LONG -> long longBenjamin Peterson2016-09-081-5/+5
|
* Adds MAX_PATH button to the installer.Steve Dower2016-09-083-89/+76
|
* Adds test.support.PGO and skips tests that are not useful for PGO.Steve Dower2016-09-071-3/+5
|
* Issue #27355: Removed support for Windows CE. It was never finished,Larry Hastings2016-09-051-3/+1
| | | | and Windows CE is no longer a relevant platform for Python.
* Issue #27756: Updates installer icons to be the console and launcher icon ↵Steve Dower2016-09-052-2/+5
| | | | instead of the setup icon
* Issue #27756: Adds new icons for Python files and processes on Windows. ↵Steve Dower2016-09-056-6/+14
| | | | Designs by Cherry Wang.
* Closes #27904: Improved logging statements to defer formatting until needed.Vinay Sajip2016-08-311-3/+3
|
* Tests: add --slowest option to buildbotsVictor Stinner2016-08-171-1/+1
| | | | Display the top 10 slowest tests.
* Adds missing file to installer.Steve Dower2016-08-161-0/+25
|
* Issue #27574: Decreased an overhead of parsing keyword arguments in functionsSerhiy Storchaka2016-08-141-8/+6
| | | | implemented with using Argument Clinic.
* Merge spelling and grammar fixes from 3.5Martin Panter2016-08-051-1/+1
|\
| * Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-041-1/+1
| |
* | Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-283-3/+3
|\ \ | |/
| * Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-283-3/+3
| | | | | | | | Based on patch by Ville Skyttä.
* | Issue #27610: Adds PEP 514 metadata to Windows installerSteve Dower2016-07-259-1/+22
| |
* | Issue #27469: Adds a shell extension to the launcher so that drag and drop ↵Steve Dower2016-07-234-6/+33
|\ \ | |/ | | | | works correctly.
| * Issue #27469: Adds a shell extension to the launcher so that drag and drop ↵Steve Dower2016-07-164-6/+33
| | | | | | | | works correctly.
* | Closes issue #24773: Implement PEP 495 (Local Time Disambiguation).Alexander Belopolsky2016-07-221-0/+81
| |
* | Merge from 3.5Steve Dower2016-07-164-18/+27
|\ \ | |/
| * Fixes use of Py_IntDir and Py_OutDir to control build directories.Steve Dower2016-07-164-18/+27
| |
* | - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-1/+1
|\ \ | |/ | | | | generated by Argument Clinic. Patch by Petr Viktorin.
| * Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-1/+1
| | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin.
* | Issue #27418: Fixed Tools/importbench/importbench.py.Serhiy Storchaka2016-06-301-7/+6
|\ \ | |/
| * Issue #27418: Fixed Tools/importbench/importbench.py.Serhiy Storchaka2016-06-301-7/+6
| |
* | Merge from 3.5Steve Dower2016-06-271-0/+74
|\ \ | |/
| * Adds script for purging the caching server for downloads on python.org.Steve Dower2016-06-271-0/+74
| |
* | Merge from 3.5Steve Dower2016-06-271-0/+55
|\ \ | |/
| * Adds batch file to build nuget packages.Steve Dower2016-06-271-0/+55
| |
* | Merge from 3.5Steve Dower2016-06-272-11/+29
|\ \ | |/
| * Include libs folder in nuget package and allow preinstalling packagesSteve Dower2016-06-272-11/+29
| |
* | Merge from 3.5Steve Dower2016-06-251-1/+2
|\ \ | |/
| * Simplifies nuget build with better parameters.Steve Dower2016-06-251-1/+2
| |
* | 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
| |