mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-10 13:48:35 +00:00

In hindsight, `ruff_python` is too general. A good giveaway is that it's actually a prefix of some other crates. The intent of this crate is to reimplement pieces of the Python standard library and CPython itself, so `ruff_python_stdlib` feels appropriate.
168 lines
3 KiB
Rust
168 lines
3 KiB
Rust
pub const BUILTINS: &[&str] = &[
|
|
"ArithmeticError",
|
|
"AssertionError",
|
|
"AttributeError",
|
|
"BaseException",
|
|
"BaseExceptionGroup",
|
|
"BlockingIOError",
|
|
"BrokenPipeError",
|
|
"BufferError",
|
|
"BytesWarning",
|
|
"ChildProcessError",
|
|
"ConnectionAbortedError",
|
|
"ConnectionError",
|
|
"ConnectionRefusedError",
|
|
"ConnectionResetError",
|
|
"DeprecationWarning",
|
|
"EOFError",
|
|
"Ellipsis",
|
|
"EncodingWarning",
|
|
"EnvironmentError",
|
|
"Exception",
|
|
"ExceptionGroup",
|
|
"False",
|
|
"FileExistsError",
|
|
"FileNotFoundError",
|
|
"FloatingPointError",
|
|
"FutureWarning",
|
|
"GeneratorExit",
|
|
"IOError",
|
|
"ImportError",
|
|
"ImportWarning",
|
|
"IndentationError",
|
|
"IndexError",
|
|
"InterruptedError",
|
|
"IsADirectoryError",
|
|
"KeyError",
|
|
"KeyboardInterrupt",
|
|
"LookupError",
|
|
"MemoryError",
|
|
"ModuleNotFoundError",
|
|
"NameError",
|
|
"None",
|
|
"NotADirectoryError",
|
|
"NotImplemented",
|
|
"NotImplementedError",
|
|
"OSError",
|
|
"OverflowError",
|
|
"PendingDeprecationWarning",
|
|
"PermissionError",
|
|
"ProcessLookupError",
|
|
"RecursionError",
|
|
"ReferenceError",
|
|
"ResourceWarning",
|
|
"RuntimeError",
|
|
"RuntimeWarning",
|
|
"StopAsyncIteration",
|
|
"StopIteration",
|
|
"SyntaxError",
|
|
"SyntaxWarning",
|
|
"SystemError",
|
|
"SystemExit",
|
|
"TabError",
|
|
"TimeoutError",
|
|
"True",
|
|
"TypeError",
|
|
"UnboundLocalError",
|
|
"UnicodeDecodeError",
|
|
"UnicodeEncodeError",
|
|
"UnicodeError",
|
|
"UnicodeTranslateError",
|
|
"UnicodeWarning",
|
|
"UserWarning",
|
|
"ValueError",
|
|
"Warning",
|
|
"ZeroDivisionError",
|
|
"__build_class__",
|
|
"__debug__",
|
|
"__doc__",
|
|
"__import__",
|
|
"__loader__",
|
|
"__name__",
|
|
"__package__",
|
|
"__spec__",
|
|
"abs",
|
|
"aiter",
|
|
"all",
|
|
"anext",
|
|
"any",
|
|
"ascii",
|
|
"bin",
|
|
"bool",
|
|
"breakpoint",
|
|
"bytearray",
|
|
"bytes",
|
|
"callable",
|
|
"chr",
|
|
"classmethod",
|
|
"compile",
|
|
"complex",
|
|
"copyright",
|
|
"credits",
|
|
"delattr",
|
|
"dict",
|
|
"dir",
|
|
"divmod",
|
|
"enumerate",
|
|
"eval",
|
|
"exec",
|
|
"exit",
|
|
"filter",
|
|
"float",
|
|
"format",
|
|
"frozenset",
|
|
"getattr",
|
|
"globals",
|
|
"hasattr",
|
|
"hash",
|
|
"help",
|
|
"hex",
|
|
"id",
|
|
"input",
|
|
"int",
|
|
"isinstance",
|
|
"issubclass",
|
|
"iter",
|
|
"len",
|
|
"license",
|
|
"list",
|
|
"locals",
|
|
"map",
|
|
"max",
|
|
"memoryview",
|
|
"min",
|
|
"next",
|
|
"object",
|
|
"oct",
|
|
"open",
|
|
"ord",
|
|
"pow",
|
|
"print",
|
|
"property",
|
|
"quit",
|
|
"range",
|
|
"repr",
|
|
"reversed",
|
|
"round",
|
|
"set",
|
|
"setattr",
|
|
"slice",
|
|
"sorted",
|
|
"staticmethod",
|
|
"str",
|
|
"sum",
|
|
"super",
|
|
"tuple",
|
|
"type",
|
|
"vars",
|
|
"zip",
|
|
];
|
|
|
|
// Globally defined names which are not attributes of the builtins module, or
|
|
// are only present on some platforms.
|
|
pub const MAGIC_GLOBALS: &[&str] = &[
|
|
"WindowsError",
|
|
"__annotations__",
|
|
"__builtins__",
|
|
"__file__",
|
|
];
|