]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-40602: Rename hashtable.h to pycore_hashtable.h (GH-20044)
authorVictor Stinner <vstinner@python.org>
Tue, 12 May 2020 00:42:19 +0000 (02:42 +0200)
committerGitHub <noreply@github.com>
Tue, 12 May 2020 00:42:19 +0000 (02:42 +0200)
commitb617993b7c0b0f6f679ef7003a62d0318b6d6af9
treec0527f03dd007c40d39de754aee44af36abefda2
parent21cdb711e3b1975398c54141e519ead02670610e
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.
Include/internal/pycore_hashtable.h [moved from Modules/hashtable.h with 96% similarity]
Makefile.pre.in
Modules/Setup
Modules/_tracemalloc.c
PCbuild/pythoncore.vcxproj
PCbuild/pythoncore.vcxproj.filters
Python/hashtable.c [moved from Modules/hashtable.c with 99% similarity]
Python/marshal.c