diff options
author | Victor Stinner <vstinner@python.org> | 2022-02-07 15:21:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 15:21:52 (GMT) |
commit | 7d8b69e1d1f125454d8cec81ff0dee72f2bef957 (patch) | |
tree | 620185012021139b0c85ad01cc62c646a096548b /Python/import.c | |
parent | 760349198dbd8771629753e096a885c1aa28a1ca (diff) | |
download | cpython-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.c | 2 |
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); |