mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
4 lines
226 B
ReStructuredText
4 lines
226 B
ReStructuredText
Fix format string in ``_PyPegen_raise_error_known_location`` that can lead
|
|
to memory corruption on some 64bit systems. The function was building a
|
|
tuple with ``i`` (int) instead of ``n`` (Py_ssize_t) for Py_ssize_t
|
|
arguments.
|