diff options
author | Victor Stinner <vstinner@python.org> | 2020-05-12 00:42:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 00:42:19 (GMT) |
commit | b617993b7c0b0f6f679ef7003a62d0318b6d6af9 (patch) | |
tree | c0527f03dd007c40d39de754aee44af36abefda2 /Modules/Setup | |
parent | 21cdb711e3b1975398c54141e519ead02670610e (diff) | |
download | cpython-b617993b7c0b0f6f679ef7003a62d0318b6d6af9.zip cpython-b617993b7c0b0f6f679ef7003a62d0318b6d6af9.tar.gz cpython-b617993b7c0b0f6f679ef7003a62d0318b6d6af9.tar.bz2 |
bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)
* Move Modules/hashtable.h to Include/internal/pycore_hashtable.h
* Move Modules/hashtable.c to Python/hashtable.c
* Python is now linked to hashtable.c. _tracemalloc is no longer
linked to hashtable.c. Previously, marshal.c got hashtable.c via
_tracemalloc.c which is built as a builtin module.
Diffstat (limited to 'Modules/Setup')
-rw-r--r-- | Modules/Setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Setup b/Modules/Setup index 6bf1424..87e73ba 100644 --- a/Modules/Setup +++ b/Modules/Setup @@ -132,7 +132,7 @@ faulthandler faulthandler.c # # bpo-35053: The module must be builtin since _Py_NewReference() # can call _PyTraceMalloc_NewReference(). -_tracemalloc _tracemalloc.c hashtable.c +_tracemalloc _tracemalloc.c # PEG-based parser module -- slated to be *the* parser _peg_parser _peg_parser.c |