summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-02-07 15:21:52 (GMT)
committerGitHub <noreply@github.com>2022-02-07 15:21:52 (GMT)
commit7d8b69e1d1f125454d8cec81ff0dee72f2bef957 (patch)
tree620185012021139b0c85ad01cc62c646a096548b /Python/import.c
parent760349198dbd8771629753e096a885c1aa28a1ca (diff)
downloadcpython-7d8b69e1d1f125454d8cec81ff0dee72f2bef957.zip
cpython-7d8b69e1d1f125454d8cec81ff0dee72f2bef957.tar.gz
cpython-7d8b69e1d1f125454d8cec81ff0dee72f2bef957.tar.bz2
bpo-46670: Remove unused macros in the Python directory (GH-31192)
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c
index be60c43..332db69 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -24,8 +24,6 @@
extern "C" {
#endif
-#define CACHEDIR "__pycache__"
-
/* Forward references */
static PyObject *import_add_module(PyThreadState *tstate, PyObject *name);