decrement offset when it points to a newline (#10186 followup)
This commit is contained in:
@@ -1344,6 +1344,8 @@ print_error_text(PyObject *f, int offset, const char *text)
|
||||
{
|
||||
char *nl;
|
||||
if (offset >= 0) {
|
||||
if (offset > 0 && offset == strlen(text) && text[offset - 1] == '\n')
|
||||
offset--;
|
||||
for (;;) {
|
||||
nl = strchr(text, '\n');
|
||||
if (nl == NULL || nl-text >= offset)
|
||||
@@ -1363,7 +1365,7 @@ print_error_text(PyObject *f, int offset, const char *text)
|
||||
if (offset == -1)
|
||||
return;
|
||||
PyFile_WriteString(" ", f);
|
||||
while (--offset)
|
||||
while (--offset > 0)
|
||||
PyFile_WriteString(" ", f);
|
||||
PyFile_WriteString("^\n", f);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user