Server IP : 85.214.239.14 / Your IP : 3.148.117.240 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/lib/python3/dist-packages/ansible_test/_util/target/sanity/compile/ |
Upload File : |
"""Python syntax checker with lint friendly output.""" from __future__ import (absolute_import, division, print_function) __metaclass__ = type import sys ENCODING = 'utf-8' ERRORS = 'replace' Text = type(u'') def main(): """Main program entry point.""" for path in sys.argv[1:] or sys.stdin.read().splitlines(): compile_source(path) def compile_source(path): """Compile the specified source file, printing an error if one occurs.""" with open(path, 'rb') as source_fd: source = source_fd.read() try: compile(source, path, 'exec', dont_inherit=True) except SyntaxError as ex: extype, message, lineno, offset = type(ex), ex.text, ex.lineno, ex.offset except BaseException as ex: # pylint: disable=broad-except extype, message, lineno, offset = type(ex), str(ex), 0, 0 else: return # In some situations offset can be None. This can happen for syntax errors on Python 2.6 # (__future__ import following after a regular import). offset = offset or 0 result = "%s:%d:%d: %s: %s" % (path, lineno, offset, extype.__name__, safe_message(message)) if sys.version_info <= (3,): result = result.encode(ENCODING, ERRORS) print(result) def safe_message(value): """Given an input value as text or bytes, return the first non-empty line as text, ensuring it can be round-tripped as UTF-8.""" if isinstance(value, Text): value = value.encode(ENCODING, ERRORS) value = value.decode(ENCODING, ERRORS) value = value.strip().splitlines()[0].strip() return value if __name__ == '__main__': main()