Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bpo-30860: Consolidate stateful runtime globals. (#3397) | Eric Snow | 2017-09-08 | 1 | -0/+7 | |
| | | | | | | | * group the (stateful) runtime globals into various topical structs * consolidate the topical structs under a single top-level _PyRuntimeState struct * add a check-c-globals.py script that helps identify runtime globals Other globals are excluded (see globals.txt and check-c-globals.py). | |||||
* | bpo-30389 Adds detection of VS 2017 to distutils._msvccompiler (#1632) | Steve Dower | 2017-09-07 | 1 | -0/+5 | |
| | ||||||
* | bpo-31358: Pull zlib out of the repository (GH-3375) | Zachary Ware | 2017-09-07 | 1 | -24/+33 | |
| | | | Also enable building externals by default on Windows, use PCbuild\build.bat's -E option to disable it. | |||||
* | bpo-31340: Change to building with MSVC v141 (included with Visual Studio ↵ | Steve Dower | 2017-09-06 | 1 | -1/+2 | |
| | | | | 2017) (#3311) | |||||
* | Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) | Eric Snow | 2017-09-06 | 1 | -8/+0 | |
| | | | Windows buildbots started failing due to include-related errors. | |||||
* | bpo-30860: Consolidate stateful runtime globals. (#2594) | Eric Snow | 2017-09-06 | 1 | -0/+8 | |
| | | | | | | | | | * group the (stateful) runtime globals into various topical structs * consolidate the topical structs under a single top-level _PyRuntimeState struct * add a check-c-globals.py script that helps identify runtime globals Other globals are excluded (see globals.txt and check-c-globals.py). | |||||
* | bpo-22257: Small changes for PEP 432. (#1728) | Eric Snow | 2017-05-23 | 1 | -2/+2 | |
| | | | 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. | |||||
* | 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. | |||||
* | 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 | 1 | -12/+12 | |
| | | | | * bpo-27593: Updates Windows build to use information from git | |||||
* | bpo-29524: Add Objects/call.c file (#12) | Victor Stinner | 2017-02-12 | 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. | |||||
* | 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. | |||||
* | 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 | -3/+9 | |
| | | ||||||
| * | Add file missed from backport | Steve Dower | 2016-09-18 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #28573: Missing sys._mercurial info and other build issues. | Steve Dower | 2016-11-22 | 1 | -3/+10 | |
| | | ||||||
* | | mark dtrace stubs as static inline; remove stubs | Benjamin Peterson | 2016-10-21 | 1 | -1/+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 | INADA Naoki | 2016-10-21 | 1 | -1/+0 | |
| | | ||||||
* | | Issue #28428: Rename _futures module to _asyncio. | INADA Naoki | 2016-10-15 | 1 | -1/+1 | |
| | | | | | | | | It will have more speedup functions or classes other than asyncio.Future. | |||||
* | | Issue #26801: Added C implementation of asyncio.Future. | INADA Naoki | 2016-10-09 | 1 | -0/+1 | |
| | | | | | | | | Original patch by Yury Selivanov. | |||||
* | | Issue #27932: Prevent memory leak in win32_ver(). | Steve Dower | 2016-09-18 | 1 | -1/+1 | |
| | | ||||||
* | | compile dtrace stubs | Benjamin Peterson | 2016-09-10 | 1 | -1/+2 | |
| | | ||||||
* | | Changes pyvenv.cfg trick into an actual sys.path file. | Steve Dower | 2016-09-09 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #1602: Windows console doesn't input or print Unicode (PEP 528) | Steve Dower | 2016-08-31 | 1 | -0/+1 | |
| | | | | | | | | Closes #17602: Adds a readline implementation for the Windows console | |||||
* | | Issue #16113: compile the module on Windows, too. | Christian Heimes | 2016-09-07 | 1 | -0/+1 | |
| | | ||||||
* | | Issue #26798: Add BLAKE2 (blake2b and blake2s) to hashlib. | Christian Heimes | 2016-09-06 | 1 | -0/+3 | |
| | | ||||||
* | | Issue #27186: add Include/osmodule.h to the proper build rules | Brett Cannon | 2016-06-12 | 1 | -1/+2 | |
| | | ||||||
* | | Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. | Serhiy Storchaka | 2016-05-24 | 1 | -0/+1 | |
|/ | | | | Patch by Demur Rumed. | |||||
* | Adds version info to all signed binaries on Windows. | Steve Dower | 2016-04-06 | 1 | -1/+0 | |
| | ||||||
* | Issue #16991: Add odictobject.h on Windows. | Eric Snow | 2015-05-30 | 1 | -0/+2 | |
| | ||||||
* | Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. | Gregory P. Smith | 2015-04-25 | 1 | -0/+2 | |
| | | | | | | | Also updates a few internal implementations of the same thing to use the new built-in code. Contributed by Arnon Yaari. | |||||
* | Issue #23524: Replace _PyVerify_fd function with calling ↵ | Steve Dower | 2015-03-06 | 1 | -7/+4 | |
| | | | | _set_thread_local_invalid_parameter_handler on every thread. | |||||
* | Back-out wcstok deprecation suppression and updates calls to use wcstok_s. | Steve Dower | 2015-02-26 | 1 | -1/+1 | |
| | ||||||
* | Adds _CRT_NON_CONFORMING_WCSTOK to retain two-parameter wcstok. | Steve Dower | 2015-02-26 | 1 | -1/+1 | |
| | ||||||
* | Fixes sys.winver generation and removes dependency on user32.dll | Steve Dower | 2015-01-15 | 1 | -3/+5 | |
| | ||||||
* | Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵ | Steve Dower | 2014-11-22 | 1 | -394/+38 | |
| | | | | which will be used for the official 3.5 release. | |||||
* | Issue #22869: Add pylifecycle.c/.h files to pythoncore project. | Steve Dower | 2014-11-21 | 1 | -0/+2 | |
| | ||||||
* | Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets. | Victor Stinner | 2014-07-29 | 1 | -8/+8 | |
| | | | | A side effect is that Python depends to the WinSock library. | |||||
* | Backout 42ced0d023cd: oops, i didn't want to push this changeset :-/ | Victor Stinner | 2014-07-24 | 1 | -8/+8 | |
| | ||||||
* | tets | Victor Stinner | 2014-07-24 | 1 | -8/+8 | |
| | ||||||
* | Issue21452 Add missing backslash to build path for make_buildinfo | Tim Golden | 2014-05-09 | 1 | -6/+6 | |
| | ||||||
* | "Escape" a character in the middle of "warning" | Zachary Ware | 2014-04-23 | 1 | -8/+8 | |
| | | | | This should stop Buildbot from falsely reporting a warning on Windows bots. | |||||
* | Issue #20609: Merge with 3.3. | Zachary Ware | 2014-02-18 | 1 | -8/+40 | |
| | ||||||
* | Issue #19788: kill_python(_d).exe is now run as a PreBuildEvent on the | Zachary Ware | 2013-11-26 | 1 | -0/+48 | |
|\ | | | | | | | | | pythoncore sub-project. This should prevent build errors due a previous build's python(_d).exe still running. | |||||
| * | Issue #19788: kill_python(_d).exe is now run as a PreBuildEvent on the | Zachary Ware | 2013-11-26 | 1 | -0/+48 | |
| | | | | | | | | | | pythoncore sub-project. This should prevent build errors due a previous build's python(_d).exe still running. | |||||
* | | Add _opcode to Windows build env | Christian Heimes | 2013-11-24 | 1 | -0/+1 | |
| | | ||||||
* | | Issue #18874: Implement the PEP 454 (tracemalloc) | Victor Stinner | 2013-11-23 | 1 | -1/+4 | |
| | | ||||||
* | | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. | Christian Heimes | 2013-11-20 | 1 | -0/+2 | |
| | | | | | | | | Python now uses SipHash24 on all major platforms. |