Skip to content

Commit de3879a

Browse files
authored
Merge pull request #11827 from tacaswell/fix_minor_c_change
FIX: correct macro logic in file_compat.h
2 parents a10701f + df75d0d commit de3879a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/file_compat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ extern "C" {
4848
/*
4949
* PyFile_* compatibility
5050
*/
51-
#if defined(PY3K) | defined(PYPY_VERSION)
51+
#if PY3K | defined(PYPY_VERSION)
5252

5353
/*
5454
* Get a FILE* handle to the file represented by the Python object

0 commit comments

Comments
 (0)