Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improves test_underpth_nosite_file to reveal why it fails. (#1763) | Steve Dower | 2017-05-23 | 1 | -0/+15 |
| | | | | | | | | | | | | | | * Improves test_underpth_nosite_file to reveal why it fails. * Enable building with Windows 10 SDK. * Fix WinSDK detection * Fix initialization on Windows when a ._pth file exists. * Fix tabs * Adds comment about Py_GetPath call. | ||||
* | bpo-22257: Small changes for PEP 432. (#1728) | Eric Snow | 2017-05-23 | 2 | -4/+4 |
| | | | PEP 432 specifies a number of large changes to interpreter startup code, including exposing a cleaner C-API. The major changes depend on a number of smaller changes. This patch includes all those smaller changes. | ||||
* | Fixes encodings in vcxproj files and adds script to automatically do it. (#1631) | Steve Dower | 2017-05-17 | 2 | -1/+37 |
| | |||||
* | Adds lib.pyproj file to solution (#1633) | Steve Dower | 2017-05-17 | 2 | -2/+1815 |
| | | | | | | | | * Adds lib.pyproj file to solution so that VS with Python support can open all the files in the standard library. * Remove unexpected solution configuration. * Remove lib.pyproj from solution to avoid memory issues on VS 2015. | ||||
* | PCbuild/build.bat: Add note about using msbuild response file. (#1551) | Charles | 2017-05-12 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | Using a response file will eliminate the headache associated with batch argument/quote processing. For example I unsucessfully compiled python with visualcpptools when specifying VSInstallDir in the batch file (cannot find vcruntime.h) ```batch build.bat -p x64 -e -M --no-tkinter "/p:VCInstallDir=%VCInstallDir%" ``` but it build successfully when specifying it in a response file msbuild.rsp: ``` /p:VCInstallDir=%VCInstallDir% ``` | ||||
* | PCbuild/build.bat: pass command line parameters when building PGO (#1510) | Charles | 2017-05-09 | 1 | -1/+1 |
| | | | Custom msbuild properties passed as command line need to be passed too when calling `Build` when doing PGO build. | ||||
* | bpo-29191: Add liblzma.vcxproj to pcbuild.sln and other missing entries (#1222) | Segev Finer | 2017-04-20 | 1 | -0/+34 |
| | | | liblzma is missing from pcbuild.sln. This causes the build of _lzma to fail when building the solution and not using build.bat. | ||||
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -1/+0 |
| | | | Make also minor PEP8 coding style fixes on modified imports. | ||||
* | bpo-27593: Revise git SCM build info. (#744) | Ned Deily | 2017-03-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | Use --short form of git hash. Use output from "git describe" for tag. Expected outputs: 1. previous hg 2. previous git 3. updated git Release (tagged) build: 1. Python 3.7.0a0 (v3.7.0a0:4def2a2901a5, ... 2. Python 3.7.0a0 (v3.7.0a0^0:05f53735c8912f8df1077e897f052571e13c3496, ... 3. Python 3.7.0a0 (v3.7.0a0:05f53735c8, ... Development build: 1. Python 3.7.0a0 (default:41df79263a11, ... 2. Python 3.7.0a0 (master:05f53735c8912f8df1077e897f052571e13c3496, ... 3. Python 3.7.0a0 (heads/master-dirty:05f53735c8, ... "dirty" means the working tree has uncommitted changes. See "git help describe" for more info. | ||||
* | bpo-29770: remove outdated PYO related info (GH-590) | Xiang Zhang | 2017-03-11 | 2 | -17/+11 |
| | |||||
* | PCbuild: Add -q option to svn export (GH-535) | INADA Naoki | 2017-03-07 | 1 | -1/+1 |
| | | | Without this option, AppVeyor log is too unreadable. | ||||
* | Fixes git command (#451) | Steve Dower | 2017-03-04 | 1 | -1/+1 |
| | |||||
* | bpo-27593: Updates Windows build to use information from git (#262) | Steve Dower | 2017-03-04 | 2 | -16/+16 |
| | | | | * bpo-27593: Updates Windows build to use information from git | ||||
* | bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-439) | Zachary Ware | 2017-03-03 | 3 | -3/+3 |
| | |||||
* | bpo-29524: Add Objects/call.c file (#12) | Victor Stinner | 2017-02-12 | 2 | -1/+5 |
| | | | | | | | | | * Move all functions to call objects in a new Objects/call.c file. * Rename fast_function() to _PyFunction_FastCallKeywords(). * Copy null_error() from Objects/abstract.c * Inline type_error() in call.c to not have to copy it, it was only called once. * Export _PyEval_EvalCodeWithName() since it is now called from call.c. | ||||
* | Backed out changeset f23fa1f7b68f | Victor Stinner | 2017-02-10 | 1 | -2/+1 |
| | | | | | Sorry, I didn't want to push this change before the review :-( I was pushing a change into the 2.7 branch. | ||||
* | Issue #29465: Add Objects/call.c file | Victor Stinner | 2017-02-10 | 1 | -1/+2 |
| | | | | | | | | | | * Move all functions to call objects in a new Objects/call.c file. * Rename fast_function() to _PyFunction_FastCallKeywords(). * Copy null_error() from Objects/abstract.c * Inline type_error() in call.c to not have to copy it, it was only called once. * Export _PyEval_EvalCodeWithName() since it is now called from call.c. | ||||
* | Issue #29080: Removes hard dependency on hg.exe from PC/build.bat | Steve Dower | 2016-12-28 | 1 | -3/+3 |
|\ | |||||
| * | Issue #29080: Removes hard dependency on hg.exe from PC/build.bat | Steve Dower | 2016-12-28 | 1 | -3/+3 |
| |\ | |||||
| | * | Issue #29080: Removes hard dependency on hg.exe from PC/build.bat | Steve Dower | 2016-12-28 | 1 | -3/+3 |
| | | | |||||
* | | | Issue #28896: Disable WindowsRegistryFinder by default. | Steve Dower | 2016-12-12 | 2 | -18/+29 |
|\ \ \ | |/ / | |||||
| * | | Issue #28896: Disable WindowsRegistryFinder by default. | Steve Dower | 2016-12-12 | 2 | -18/+29 |
| | | | |||||
* | | | Issue #28846: Various installer fixes | Steve Dower | 2016-12-03 | 2 | -0/+5 |
|\ \ \ | |/ / | |||||
| * | | Ensures intermediate directory is created before using it | Steve Dower | 2016-12-03 | 1 | -0/+1 |
| |\ \ | | |/ | |||||
| | * | Ensures intermediate directory is created before accessing it. | Steve Dower | 2016-12-03 | 1 | -0/+1 |
| | | | |||||
| * | | Issue #28846: Various installer fixes | Steve Dower | 2016-12-03 | 1 | -0/+4 |
| |\ \ | | |/ | |||||
| | * | Issue #28846: Various installer fixes | Steve Dower | 2016-12-03 | 2 | -3/+13 |
| | | | |||||
* | | | Issue #28573: Missing sys._mercurial info and other build issues. | Steve Dower | 2016-11-22 | 1 | -3/+10 |
|\ \ \ | |/ / | |||||
| * | | Issue #28573: Missing sys._mercurial info and other build issues. | Steve Dower | 2016-11-22 | 1 | -3/+10 |
| | | | |||||
* | | | Issue #28573: Avoid setting up env too many times during build | Steve Dower | 2016-11-15 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Issue #28573: Avoid setting up env too many times during build | Steve Dower | 2016-11-15 | 1 | -1/+1 |
| | | | |||||
* | | | Merge from 3.6 | Steve Dower | 2016-10-29 | 1 | -0/+3 |
|\ \ \ | |/ / | |||||
| * | | Makes test_underpth* tests more robust by copying the executable. | Steve Dower | 2016-10-29 | 1 | -0/+3 |
| | | | |||||
* | | | merge 3.6 | Benjamin Peterson | 2016-10-21 | 2 | -4/+0 |
|\ \ \ | |/ / | |||||
| * | | mark dtrace stubs as static inline; remove stubs | Benjamin Peterson | 2016-10-21 | 2 | -4/+0 |
| | | | | | | | | | | | | | | | C99 inline semantics don't work everywhere. (https://bugs.python.org/issue28092) We don't want these to have external visibility anyway. | ||||
* | | | Issue #28448: Fix C implemented asyncio.Future didn't work on Windows (merge ↵ | INADA Naoki | 2016-10-21 | 5 | -2/+96 |
|\ \ \ | |/ / | | | | | | | 3.6) | ||||
| * | | Issue #28448: Fix C implemented asyncio.Future didn't work on Windows | INADA Naoki | 2016-10-21 | 5 | -2/+96 |
| | | | |||||
* | | | Issue #28428: Rename _futures module to _asyncio. (merge from 3.6) | INADA Naoki | 2016-10-15 | 2 | -4/+4 |
|\ \ \ | |/ / | | | | | | | It will have more speedup functions or classes other than asyncio.Future. | ||||
| * | | Issue #28428: Rename _futures module to _asyncio. | INADA Naoki | 2016-10-15 | 2 | -4/+4 |
| | | | | | | | | | | | | It will have more speedup functions or classes other than asyncio.Future. | ||||
* | | | Issue #28208: Merge with 3.6 | Zachary Ware | 2016-10-11 | 3 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | Issue #28208: Update Windows build to use SQLite 3.14.2.0 | Zachary Ware | 2016-10-11 | 3 | -3/+3 |
| | | | |||||
* | | | Issue #28248: Merge with 3.6 | Zachary Ware | 2016-10-11 | 3 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | Issue #28248: Merge with 3.5 | Zachary Ware | 2016-10-11 | 3 | -3/+3 |
| |\ \ | | |/ | |||||
| | * | Issue #28248: Merge with 3.4 | Zachary Ware | 2016-10-11 | 3 | -3/+3 |
| | |\ | |||||
| | | * | Issue #28248: Update Windows build to use OpenSSL 1.0.2j | Zachary Ware | 2016-10-11 | 3 | -3/+3 |
| | | | | |||||
| | | * | Closes #25456: Copy Tcl/Tk DLLs to build directory on Windows | Zachary Ware | 2015-10-24 | 2 | -3/+15 |
| | | | | | | | | | | | | | | | | | | | | | | | | This removes the need to add externals/tcltk[64]/bin to PATH to be able to import tkinter. Also documents the necessity for the DLLs to be on PATH or in python.exe's directory. | ||||
| | | * | Various minor typos in documentation and comments | Martin Panter | 2015-10-07 | 1 | -1/+1 |
| | | | | |||||
* | | | | Issue #28402: Adds signed catalog files for stdlib on Windows. | Steve Dower | 2016-10-10 | 1 | -5/+7 |
|\ \ \ \ | |/ / / | |||||
| * | | | Issue #28402: Adds signed catalog files for stdlib on Windows. | Steve Dower | 2016-10-10 | 1 | -5/+7 |
| | | | | |||||
* | | | | Issue #26801: Added C implementation of asyncio.Future. | INADA Naoki | 2016-10-09 | 2 | -0/+4 |
|\ \ \ \ | |/ / / | | | | | | | | | Original patch by Yury Selivanov. |