Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Buildbots: change also Windows timeout from 1 hour to 15 min | Victor Stinner | 2016-03-23 | 1 | -1/+1 |
| | |||||
* | Issue #26581: Use the first coding cookie on a line, not the last one. | Serhiy Storchaka | 2016-03-20 | 1 | -1/+1 |
|\ | |||||
| * | Issue #26581: Use the first coding cookie on a line, not the last one. | Serhiy Storchaka | 2016-03-20 | 1 | -1/+1 |
| | | |||||
* | | Merge for issue #26271 | Brett Cannon | 2016-03-18 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #26271: Fix the Freeze tool to use variables passed in from the | Brett Cannon | 2016-03-18 | 1 | -2/+2 |
| | | | | | | | | | | | | configure script related to compiler flags. Thanks to Daniel Shaulov for the bug report and patch. | ||||
* | | Backs out buildbot clean trigger. | Steve Dower | 2016-03-08 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Backs out buildbot clean trigger. | Steve Dower | 2016-03-08 | 1 | -1/+1 |
| | | |||||
* | | Adds warning to prepare_ssl when nasm is not available. | Steve Dower | 2016-03-08 | 1 | -1/+1 |
|\ \ | |/ | | | | | Force clean externals on buildbots. | ||||
| * | Adds warning to prepare_ssl when nasm is not available. | Steve Dower | 2016-03-08 | 1 | -1/+1 |
| | | | | | | | | Force clean of externals on buildbots. | ||||
* | | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py | Berker Peksag | 2016-03-06 | 1 | -3/+12 |
|\ \ | |/ | | | | | Patch by Guo Ci Teo. | ||||
| * | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py | Berker Peksag | 2016-03-06 | 1 | -3/+12 |
| | | | | | | | | Patch by Guo Ci Teo. | ||||
* | | Issue #26316: Merge Arg Clinic fix from 3.5 | Martin Panter | 2016-02-14 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #26316: Fix variable name typo in Argument Clinic | Martin Panter | 2016-02-14 | 1 | -1/+1 |
| | | |||||
* | | Issue #25985: sys.version_info is now used instead of sys.version | Serhiy Storchaka | 2016-02-11 | 2 | -3/+3 |
| | | | | | | | | to format short Python version. | ||||
* | | Add ast.Constant | Victor Stinner | 2016-01-25 | 1 | -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 Dower | 2016-01-16 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #26065: Excludes venv from library when generating embeddable distro. | Steve Dower | 2016-01-16 | 1 | -0/+1 |
| | | |||||
* | | Merge from 3.5 (including all NEWS entries) | Steve Dower | 2015-12-02 | 5 | -103/+132 |
|\ \ | |/ | |||||
| * | Issue #25715: Python 3.5.1 installer shows wrong upgrade path and incorrect ↵ | Steve Dower | 2015-12-02 | 5 | -103/+132 |
| | | | | | | | | logic for launcher detection. | ||||
* | | Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failure | Martin Panter | 2015-11-30 | 1 | -2/+2 |
| | | |||||
* | | Merge from 3.5 | Steve Dower | 2015-11-23 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Fixes upload directories for Windows installer. | Steve Dower | 2015-11-23 | 2 | -2/+2 |
| | | |||||
* | | Fixes installer not allowing launcher to be selected. | Steve Dower | 2015-11-09 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Fixes installer not allowing launcher to be selected. | Steve Dower | 2015-11-09 | 1 | -3/+3 |
| | | |||||
* | | Issue #25523: Merge a-to-an corrections from 3.5 | Martin Panter | 2015-11-02 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -2/+2 |
| |\ | |||||
| | * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
* | | | Merge from 3.5 | Steve Dower | 2015-10-31 | 13 | -61/+84 |
|\ \ \ | |/ / | |||||
| * | | Issue #25450: Updates shortcuts to start Python in installation directory. | Steve Dower | 2015-10-31 | 3 | -4/+8 |
| | | | |||||
| * | | Improves handling of test markers for building Python without intefering ↵ | Steve Dower | 2015-10-31 | 10 | -57/+76 |
| | | | | | | | | | | | | with actual installs. | ||||
* | | | Merge with 3.5 | Terry Jan Reedy | 2015-10-30 | 1 | -2/+0 |
|\ \ \ | |/ / | |||||
| * | | Merge with 3.4 | Terry Jan Reedy | 2015-10-30 | 1 | -2/+0 |
| |\ \ | | |/ | |||||
| | * | Issue #25505: Remove unused buggy method. | Terry Jan Reedy | 2015-10-30 | 1 | -2/+0 |
| | | | |||||
* | | | merge 3.5 (#25504) | Benjamin Peterson | 2015-10-30 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | merge 3.4 (#25504) | Benjamin Peterson | 2015-10-30 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | fix usage of undefined name (#25504) | Benjamin Peterson | 2015-10-30 | 1 | -1/+1 |
| | | | |||||
* | | | Fix a variable typo by switching to a f-string. | Brett Cannon | 2015-10-27 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #25154: Make the file argument apply to the print function and | Brett Cannon | 2015-10-26 | 1 | -1/+1 |
| | | | | | | | | | | | | not str.format call. | ||||
* | | | Issue #24633: Removes automatic rename of site-packages/README since ↵ | Steve Dower | 2015-10-23 | 1 | -6/+0 |
| | | | | | | | | | | | | README.txt is now committed. | ||||
* | | | Moves Windows installer externals onto SVN and updates the build process to ↵ | Steve Dower | 2015-10-23 | 8 | -70/+100 |
|\ \ \ | |/ / | | | | | | | grab them automatically. | ||||
| * | | Moves Windows installer externals onto SVN and updates the build process to ↵ | Steve Dower | 2015-10-23 | 8 | -70/+100 |
| | | | | | | | | | | | | grab them automatically. | ||||
* | | | Issue #25154: Deprecate the pyvenv script. | Brett Cannon | 2015-10-16 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | This was done so as to move users to `python3 -m venv` which prevents confusion over which Python interpreter will be used in the virtual environment when more than one is installed. | ||||
* | | | Merge from 3.5 | Steve Dower | 2015-10-14 | 5 | -28/+78 |
|\ \ \ | |/ / | |||||
| * | | Enabled --pgo option for building 64-bit PGO enabled releases. | Steve Dower | 2015-10-14 | 2 | -9/+57 |
| | | | |||||
| * | | Issue #25164: Changes default all-users install directory to match per-user ↵ | Steve Dower | 2015-10-14 | 3 | -19/+21 |
| | | | | | | | | | | | | directory. | ||||
* | | | Merge from 3.5 | Steve Dower | 2015-10-12 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | Keeps all-users launcher checkbox visible when the option cannot be changed. | Steve Dower | 2015-10-12 | 1 | -2/+2 |
| | | | |||||
* | | | Merge from 3.5 | Steve Dower | 2015-10-12 | 3 | -3/+16 |
|\ \ \ | |/ / | |||||
| * | | Only detects features from previous version when a bundle is found. | Steve Dower | 2015-10-12 | 3 | -3/+16 |
| | | | | | | | | | | | | | | | Otherwise, stray registry entries would cause issues. Also fixes an accelerator collision and improves UAC icons when upgrading. | ||||
* | | | Issue #25143: Improves installer error messages for unsupported platforms. | Steve Dower | 2015-10-11 | 4 | -1/+44 |
|\ \ \ | |/ / |