Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) | Serhiy Storchaka | 2019-03-13 | 1 | -1/+1 |
| | |||||
* | bpo-35059: Cast void* to PyObject* (GH-10650) | Victor Stinner | 2018-11-22 | 1 | -3/+4 |
| | | | Don't pass void* to Python macros: use _PyObject_CAST(). | ||||
* | bpo-35081: Add Include/internal/pycore_object.h (GH-10640) | Victor Stinner | 2018-11-21 | 1 | -2/+3 |
| | | | | Move _PyObject_GC_TRACK() and _PyObject_GC_UNTRACK() from Include/objimpl.h to Include/internal/pycore_object.h. | ||||
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Rename Include/internal/ headers: * pycore_hash.h -> pycore_pyhash.h * pycore_lifecycle.h -> pycore_pylifecycle.h * pycore_mem.h -> pycore_pymem.h * pycore_state.h -> pycore_pystate.h Add missing headers to Makefile.pre.in and PCbuild: * pycore_condvar.h. * pycore_hamt.h * pycore_pyhash.h | ||||
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | * Rename Include/internal/ header files: * pyatomic.h -> pycore_atomic.h * ceval.h -> pycore_ceval.h * condvar.h -> pycore_condvar.h * context.h -> pycore_context.h * pygetopt.h -> pycore_getopt.h * gil.h -> pycore_gil.h * hamt.h -> pycore_hamt.h * hash.h -> pycore_hash.h * mem.h -> pycore_mem.h * pystate.h -> pycore_state.h * warnings.h -> pycore_warnings.h * PCbuild project, Makefile.pre.in, Modules/Setup: add the Include/internal/ directory to the search paths of header files. * Update includes. For example, replace #include "internal/mem.h" with #include "pycore_mem.h". | ||||
* | Fix GCC warning in Python/hamt.c (GH-7618) | Zackery Spytz | 2018-07-06 | 1 | -1/+1 |
| | |||||
* | bpo-33803: Fix a crash in hamt.c (#7504) | Yury Selivanov | 2018-06-08 | 1 | -0/+2 |
| | |||||
* | Spelling fixes to docs, docstrings, and comments (GH-6374) | Ville Skyttä | 2018-04-20 | 1 | -2/+2 |
| | |||||
* | Add two missing error checks in hamt.c (GH-5851) | Xiang Zhang | 2018-03-08 | 1 | -1/+7 |
| | |||||
* | Fix some warnings produced by different compilers. (#5593) | Serhiy Storchaka | 2018-02-09 | 1 | -2/+2 |
| | |||||
* | bpo-32436: Fix compiler warning (#5483) | Yury Selivanov | 2018-02-02 | 1 | -0/+2 |
| | |||||
* | Fix typo in hamt.c comments (#5478) | Dmitry Alimov | 2018-02-02 | 1 | -1/+1 |
| | |||||
* | bpo-32707: Fix warnings in hamt.c (#5430) | Yury Selivanov | 2018-01-29 | 1 | -3/+5 |
| | |||||
* | bpo-32436: Fix a refleak; var GC tracking; a GCC warning (#5326) | Yury Selivanov | 2018-01-25 | 1 | -1/+1 |
| | | | | | The refleak in question wasn't really important, as context vars are usually created at the toplevel and live as long as the interpreter lives, so the context var name isn't ever GCed anyways. | ||||
* | Fix 3rd level node's binary representation in HAMT algorithm description (#5319) | Dmitry Alimov | 2018-01-25 | 1 | -1/+1 |
| | |||||
* | bpo-32436: Don't use native popcount() (also fixes bpo-32641) (#5292) | Yury Selivanov | 2018-01-24 | 1 | -14/+12 |
| | |||||
* | bpo-32436: Fix potential NULL dereference (#5286) | Yury Selivanov | 2018-01-23 | 1 | -0/+4 |
| | |||||
* | bpo-32436: Remove a redundant assert (#5275) | Yury Selivanov | 2018-01-23 | 1 | -1/+0 |
| | |||||
* | bpo-32436: Implement PEP 567 (#5027) | Yury Selivanov | 2018-01-23 | 1 | -0/+2982 |