diff options
| author | Mark Shannon <mark@hotpy.org> | 2023-06-02 10:46:18 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-02 10:46:18 (GMT) |
| commit | 4bfa01b9d911ce9358cf1a453bee15554f8e4c07 (patch) | |
| tree | bd61d8459bf30d42abf0be7258de91360bea434b /Python/ceval_macros.h | |
| parent | 601ae09f0c8eda213b9050892f5ce9b91f0aa522 (diff) | |
| download | cpython-4bfa01b9d911ce9358cf1a453bee15554f8e4c07.zip cpython-4bfa01b9d911ce9358cf1a453bee15554f8e4c07.tar.gz cpython-4bfa01b9d911ce9358cf1a453bee15554f8e4c07.tar.bz2 | |
GH-104584: Plugin optimizer API (GH-105100)
Diffstat (limited to 'Python/ceval_macros.h')
| -rw-r--r-- | Python/ceval_macros.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h index fccf908..86a48f6 100644 --- a/Python/ceval_macros.h +++ b/Python/ceval_macros.h @@ -300,7 +300,6 @@ GETITEM(PyObject *v, Py_ssize_t i) { #define INCREMENT_ADAPTIVE_COUNTER(COUNTER) \ do { \ - assert(!ADAPTIVE_COUNTER_IS_MAX((COUNTER))); \ (COUNTER) += (1 << ADAPTIVE_BACKOFF_BITS); \ } while (0); |
