commit | 202a3c422b400ee46c61cb9b22ca8ec4b80dfdfd | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <senthil@uthcode.com> | Thu Oct 20 02:15:36 2011 +0800 |
committer | Senthil Kumaran <senthil@uthcode.com> | Thu Oct 20 02:15:36 2011 +0800 |
tree | 8290d6e65e92b50708658411f49fc6380f88f4b1 | |
parent | 29fa9d4d68af7d22b88545fa8bc4ae186d256fd3 [diff] |
3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c
diff --git a/Modules/_sre.c b/Modules/_sre.c index 2b764b1..a363de2 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c
@@ -2760,7 +2760,7 @@ #if defined(VVERBOSE) #define VTRACE(v) printf v #else -#define VTRACE(v) +#define VTRACE(v) do {} while(0) /* do nothing */ #endif /* Report failure */