bpo-46670: Remove unused macros in the Objects directory (GH-31193)

This commit is contained in:
Victor Stinner 2022-02-07 16:21:41 +01:00 committed by GitHub
parent 4f1d3f33dd
commit 760349198d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 12 deletions

View file

@ -292,7 +292,6 @@ _PyDict_DebugMallocStats(FILE *out)
}
#define DK_MASK(dk) (DK_SIZE(dk)-1)
#define IS_POWER_OF_2(x) (((x) & (x-1)) == 0)
static void free_keys_object(PyDictKeysObject *keys);