Skip to content

Commit a89d6de

Browse files
Temporarily disable assert
1 parent ceddb6a commit a89d6de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_backoff.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static uint16_t value_and_backoff_next[] = {
5858
static inline _Py_BackoffCounter
5959
make_backoff_counter(uint16_t value, uint16_t backoff)
6060
{
61-
assert(backoff <= UNREACHABLE_BACKOFF);
61+
//assert(backoff <= UNREACHABLE_BACKOFF);
6262
assert(value <= MAX_VALUE);
6363
return ((_Py_BackoffCounter){
6464
.value_and_backoff = MAKE_VALUE_AND_BACKOFF(value, backoff)

0 commit comments

Comments
 (0)