bpo-46670: Remove unused macros in the Python directory (GH-31192)

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

View file

@ -45,11 +45,9 @@
#ifdef Py_DEBUG
static int thread_debug = 0;
#define dprintf(args) (void)((thread_debug & 1) && printf args)
#define d2printf(args) ((thread_debug & 8) && printf args)
# define dprintf(args) (void)((thread_debug & 1) && printf args)
#else
#define dprintf(args)
#define d2printf(args)
# define dprintf(args)
#endif
static int initialized;