diff options
author | orivej <orivej@yandex-team.ru> | 2022-02-10 16:45:01 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:01 +0300 |
commit | 2d37894b1b037cf24231090eda8589bbb44fb6fc (patch) | |
tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/tools/cython/Cython/Compiler/Errors.py | |
parent | 718c552901d703c502ccbefdfc3c9028d608b947 (diff) | |
download | ydb-2d37894b1b037cf24231090eda8589bbb44fb6fc.tar.gz |
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/tools/cython/Cython/Compiler/Errors.py')
-rw-r--r-- | contrib/tools/cython/Cython/Compiler/Errors.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/contrib/tools/cython/Cython/Compiler/Errors.py b/contrib/tools/cython/Cython/Compiler/Errors.py index aa7a40437c..9761b52c32 100644 --- a/contrib/tools/cython/Cython/Compiler/Errors.py +++ b/contrib/tools/cython/Cython/Compiler/Errors.py @@ -4,11 +4,11 @@ from __future__ import absolute_import -try: - from __builtin__ import basestring as any_string_type -except ImportError: - any_string_type = (bytes, str) - +try: + from __builtin__ import basestring as any_string_type +except ImportError: + any_string_type = (bytes, str) + import sys from contextlib import contextmanager @@ -27,7 +27,7 @@ class PyrexWarning(Exception): def context(position): source = position[0] - assert not (isinstance(source, any_string_type)), ( + assert not (isinstance(source, any_string_type)), ( "Please replace filename strings with Scanning.FileSourceDescriptor instances %r" % source) try: F = source.get_lines() @@ -173,7 +173,7 @@ def report_error(err, use_stack=True): def error(position, message): - #print("Errors.error:", repr(position), repr(message)) ### + #print("Errors.error:", repr(position), repr(message)) ### if position is None: raise InternalError(message) err = CompileError(position, message) |