You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Potentially, a .format'd string specifies a parameter outside of the number of real parameters:
"{8}".format(0, 1)
If a) the index specified in the template exceeds the number of parameters and b) there are unused format args, the F523 fix will panic (regression from: #4837)
addisoncrump
changed the title
F523: Regression: index out-of-bounds panic on invalid indices
F523: Regression: index out-of-bounds panic on invalid parameter indices
Jun 5, 2023
Potentially, a
.format
'd string specifies a parameter outside of the number of real parameters:If a) the index specified in the template exceeds the number of parameters and b) there are unused format args, the F523 fix will panic (regression from: #4837)
This was detected by #4822.
The text was updated successfully, but these errors were encountered: