Kaydet (Commit) ab9cc1b7 authored tarafından Brett Cannon's avatar Brett Cannon

Fix some indentation errors.

üst 56fcb0bc
...@@ -473,7 +473,8 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment