bpo-39831: Remove outdated comment. (GH-18764)

This commit is contained in:
Serhiy Storchaka 2020-03-03 19:43:29 +02:00 committed by GitHub
parent 91fe414264
commit ae75a29435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -889,11 +889,9 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
return 1;
handle_error:
/* filename not XDECREF'ed here as there is no way to jump here with a
dangling reference. */
Py_XDECREF(*registry);
Py_XDECREF(*module);
Py_XDECREF(*filename);
Py_DECREF(*filename);
return 0;
}