Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change start value to 64.
  • Loading branch information
markshannon committed Oct 20, 2021
commit cf535259dac5b69f091e0fe20fd3b401381fc750
2 changes: 1 addition & 1 deletion Include/internal/pycore_code.h
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ saturating_zero(void)
static inline uint8_t
saturating_start(void)
{
return 32;
return 64;
}

// static inline void
Expand Down