mirror of
https://github.com/python/cpython.git
synced 2025-09-14 04:37:29 +00:00
Fix some indentation errors.
This commit is contained in:
parent
56fcb0bc29
commit
ab9cc1b7ad
1 changed files with 10 additions and 9 deletions
|
@ -473,7 +473,8 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
|
||||||
tolower(file_str[len-3]) == 'p' &&
|
tolower(file_str[len-3]) == 'p' &&
|
||||||
tolower(file_str[len-2]) == 'y' &&
|
tolower(file_str[len-2]) == 'y' &&
|
||||||
(tolower(file_str[len-1]) == 'c' ||
|
(tolower(file_str[len-1]) == 'c' ||
|
||||||
tolower(file_str[len-1]) == 'o')) {
|
tolower(file_str[len-1]) == 'o'))
|
||||||
|
{
|
||||||
*filename = PyString_FromStringAndSize(file_str, len-1);
|
*filename = PyString_FromStringAndSize(file_str, len-1);
|
||||||
if (*filename == NULL)
|
if (*filename == NULL)
|
||||||
goto handle_error;
|
goto handle_error;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue