Skip to content

Commit

Permalink
Fix a preprocessor condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnowcurrently committed Feb 28, 2022
1 parent 11a9311 commit fdc82d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/internal/pycore_tuple.h
Expand Up @@ -23,7 +23,7 @@ extern void _PyTuple_Fini(PyInterpreterState *);
// PyTuple_MAXSAVESIZE - largest tuple to save on free list
// PyTuple_MAXFREELIST - maximum number of tuples of each size to save

#if PyTuple_MAXSAVESIZE <= 0
#if defined(PyTuple_MAXSAVESIZE) && PyTuple_MAXSAVESIZE <= 0
// A build indicated that tuple freelists should not be used.
# define PyTuple_NFREELISTS 0
# undef PyTuple_MAXSAVESIZE
Expand Down

0 comments on commit fdc82d2

Please sign in to comment.