| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | bpo-37725: have "make clean" remove PGO task data (#15033) | Neil Schemenauer | 2019-09-10 | 1 | -6/+15 |
|
|
* | bpo-37589: Add a few missing dependencies on .h files in the Makefile. (GH-15... | T. Wouters | 2019-09-09 | 1 | -7/+11 |
|
|
* | bpo-37653: Fix libinstall target in Makefile (GH-14911) | Erlend Egeberg Aasland | 2019-07-23 | 1 | -2/+0 |
|
|
* | bpo-36044: Reduce number of unit tests run for PGO build (GH-14702) | Neil Schemenauer | 2019-07-22 | 1 | -3/+4 |
|
|
* | bpo-37468: make install no longer install wininst-*.exe files (GH-14511) | Victor Stinner | 2019-07-15 | 1 | -0/+3 |
|
|
* | bpo-37359: Add --cleanup option to python3 -m test (GH-14332) | Victor Stinner | 2019-06-24 | 1 | -0/+5 |
|
|
* | bpo-35134: Add Include/cpython/import.h header file (GH-14213) | Victor Stinner | 2019-06-18 | 1 | -0/+2 |
|
|
* | bpo-37215: Fix dtrace issue introduce by bpo-36842 (GH-13940) | Christian Heimes | 2019-06-10 | 1 | -5/+5 |
|
|
* | bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884) | Inada Naoki | 2019-06-03 | 1 | -0/+1 |
|
|
* | bpo-36763: Implement the PEP 587 (GH-13592) | Victor Stinner | 2019-05-27 | 1 | -5/+5 |
|
|
* | bpo-36785: PEP 574 implementation (GH-7076) | Antoine Pitrou | 2019-05-26 | 1 | -1/+3 |
|
|
* | bpo-34632 fix buildbots and remove artifact (GH-13566) | Jason R. Coombs | 2019-05-25 | 1 | -0/+1 |
|
|
* | bpo-34632: fix installation of importlib.metadata (#13563) | Chih-Hsuan Yen | 2019-05-25 | 1 | -0/+1 |
|
|
* | bpo-36721: Fix pkg-config symbolic links on "make install" (GH-13551) | Victor Stinner | 2019-05-24 | 1 | -2/+2 |
|
|
* | bpo-36710: Add tstate parameter in ceval.c (GH-13547) | Victor Stinner | 2019-05-24 | 1 | -0/+1 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+2 |
|
|
* | bpo-36721: Add --embed option to python-config (GH-13500) | Victor Stinner | 2019-05-23 | 1 | -1/+6 |
|
|
* | bpo-35134: Register new traceback.h header files (GH-13431) | Victor Stinner | 2019-05-20 | 1 | -0/+2 |
|
|
* | bpo-36786: Run compileall in parallel during "make install" (GH-13078) | Antoine Pitrou | 2019-05-15 | 1 | -6/+6 |
|
|
* | bpo-13611: Include C14N 2.0 test data in installation (GH-13053) | Stefan Behnel | 2019-05-02 | 1 | -1/+2 |
|
|
* | bpo-36747: Remove the stale scriptsinstall Makefile target (GH-13003) | xdegaye | 2019-04-29 | 1 | -8/+0 |
|
|
* | bpo-21536: On Android, C extensions are linked to libpython (GH-12989) | xdegaye | 2019-04-29 | 1 | -0/+1 |
|
|
* | bpo-21536: Revert Makefile change on python-config (GH-12971) | Victor Stinner | 2019-04-26 | 1 | -1/+3 |
|
|
* | bpo-36733: Fix PYTHONPATH for make regen-add (GH-12969) | Victor Stinner | 2019-04-26 | 1 | -2/+2 |
|
|
* | bpo-21536: C extensions are no longer linked to libpython (GH-12946) | Victor Stinner | 2019-04-25 | 1 | -1/+1 |
|
|
* | bpo-35134: Add cpython/pymem.h to build system (GH-12842) | Victor Stinner | 2019-04-15 | 1 | -0/+1 |
|
|
* | bpo-36623: Clean parser headers and include files (GH-12253) | Pablo Galindo | 2019-04-13 | 1 | -1/+0 |
|
|
* | bpo-36508: python-config don't export LINKFORSHARED (GH-12661) | Victor Stinner | 2019-04-09 | 1 | -0/+2 |
|
|
* | bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using p... | Pablo Galindo | 2019-03-25 | 1 | -1/+10 |
|
|
* | bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n... | Eric Snow | 2019-03-15 | 1 | -0/+3 |
|
|
* | Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()... | Victor Stinner | 2019-03-04 | 1 | -3/+0 |
|
|
* | bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n... | Eric Snow | 2019-03-01 | 1 | -0/+3 |
|
|
* | bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814) | Pablo Galindo | 2019-03-01 | 1 | -38/+4 |
|
|
* | bpo-36142: Add preconfig.c (GH-12128) | Victor Stinner | 2019-03-01 | 1 | -0/+1 |
|
|
* | bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111) | Victor Stinner | 2019-03-01 | 1 | -1/+2 |
|
|
* | bpo-12822: use monotonic clock for condvar if possible (GH-11723) | Inada Naoki | 2019-02-20 | 1 | -2/+3 |
|
|
* | bpo-35520: Fix build with dtrace support on certain systems. (#11194) | Jakub KulĂk | 2019-01-24 | 1 | -4/+8 |
|
|
* | bpo-35257: fix broken BLDSHARED - needs LDFLAGS too (GH-11297) | Ned Deily | 2018-12-23 | 1 | -1/+1 |
|
|
* | bpo-30455: Generate all token related code and docs from Grammar/Tokens. (GH-... | Serhiy Storchaka | 2018-12-22 | 1 | -2/+34 |
|
|
* | bpo-35257: Avoid leaking LTO linker flags into distutils (GH-10900) | stratakis | 2018-12-19 | 1 | -9/+16 |
|
|
* | bpo-35499: make profile-opt don't override CFLAGS_NODIST (GH-11164) | Victor Stinner | 2018-12-16 | 1 | -2/+2 |
|
|
* | bpo-34245: install Python shared library with more standard 0755 mode (GH-8492) | jdemeyer | 2018-12-09 | 1 | -2/+1 |
|
|
* | bpo-35134: Create Include/cpython/tupleobject.h (GH-10764) | Victor Stinner | 2018-11-28 | 1 | -0/+8 |
|
|
* | bpo-35134: Update "make tags": add Include/cpython/ (GH-10739) | Victor Stinner | 2018-11-27 | 1 | -2/+2 |
|
|
* | closes bpo-34212: Build core extension modules with Py_BUILD_CORE_BUILTIN. (G... | E. M. Bray | 2018-11-27 | 1 | -0/+1 |
|
|
* | bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) | Victor Stinner | 2018-11-25 | 1 | -0/+1 |
|
|
* | bpo-35134: Create Include/cpython/ subdirectory (GH-10624) | Victor Stinner | 2018-11-23 | 1 | -0/+14 |
|
|
* | bpo-35296: make install now installs the internal API (GH-10665) | Victor Stinner | 2018-11-23 | 1 | -0/+10 |
|
|
* | bpo-35081: Add new internal headers to Makefile (GH-10670) | Victor Stinner | 2018-11-23 | 1 | -0/+2 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -3/+6 |
|
|