diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-08-09 18:32:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 18:32:54 (GMT) |
commit | 058fb35b57ca8c5063d16ec818e668b3babfea65 (patch) | |
tree | 7c476bb7c59e65a9e8c83ca633068be3f14a1975 /Objects/exceptions.c | |
parent | 7d14fdb03c3e8384c01da1b21647ce837ed6a29c (diff) | |
download | cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.zip cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.gz cpython-058fb35b57ca8c5063d16ec818e668b3babfea65.tar.bz2 |
bpo-44854: Remove trailing whitespaces (GH-27689)
Diffstat (limited to 'Objects/exceptions.c')
-rw-r--r-- | Objects/exceptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c index 76772fb..c6a7aa4 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -1503,7 +1503,7 @@ SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds) &self->end_lineno, &self->end_offset)) { Py_DECREF(info); return -1; - } + } Py_INCREF(self->filename); Py_INCREF(self->lineno); |