summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-05-12 00:42:19 (GMT)
committerGitHub <noreply@github.com>2020-05-12 00:42:19 (GMT)
commitb617993b7c0b0f6f679ef7003a62d0318b6d6af9 (patch)
treec0527f03dd007c40d39de754aee44af36abefda2 /Python/marshal.c
parent21cdb711e3b1975398c54141e519ead02670610e (diff)
downloadcpython-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 'Python/marshal.c')
-rw-r--r--Python/marshal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index b4429ae..d2bff52 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -12,7 +12,7 @@
#include "longintrepr.h"
#include "code.h"
#include "marshal.h"
-#include "../Modules/hashtable.h"
+#include "pycore_hashtable.h"
/*[clinic input]
module marshal