Skip to content

Commit

Permalink
debug...
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Mar 9, 2024
1 parent 317a565 commit 5b53f8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions pythoncapi_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -1199,8 +1199,7 @@ static inline int PyTime_PerfCounter(PyTime_t *result)
// gh-111389 added hash constants to Python 3.13.0a5. These constants were
// added first as private macros to Python 3.4.0b1 and PyPy 7.3.9.
#if (!defined(PyHASH_BITS) \
&& PY_VERSION_HEX >= 0x030400B1 \
&& (!defined(PYPY_VERSION_NUM) || PYPY_VERSION_NUM >= 0x07030900))
&& PY_VERSION_HEX >= 0x030400B1
# define PyHASH_BITS _PyHASH_BITS
# define PyHASH_MODULUS _PyHASH_MODULUS
# define PyHASH_INF _PyHASH_INF
Expand Down
3 changes: 1 addition & 2 deletions tests/test_pythoncapi_compat_cext.c
Original file line number Diff line number Diff line change
Expand Up @@ -1522,8 +1522,7 @@ test_hash(PyObject *Py_UNUSED(module), PyObject *Py_UNUSED(args))
assert(Py_HashPointer(ptr1) == (Py_hash_t)ptr1);
#endif

#if PY_VERSION_HEX >= 0x030400B1 \
&& (!defined(PYPY_VERSION_NUM) || PYPY_VERSION_NUM >= 0x07030900)
#if PY_VERSION_HEX >= 0x030400B1
// Just check that constants are available
size_t bits = PyHASH_BITS;
assert(bits >= 8);
Expand Down

0 comments on commit 5b53f8e

Please sign in to comment.