diff options
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 58 |
1 files changed, 55 insertions, 3 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 649f89eb1e..96d94d937d 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -34,19 +34,63 @@ Q(Ellipsis) Q(StopIteration) Q(BaseException) +Q(ArithmeticError) Q(AssertionError) Q(AttributeError) +Q(BlockingIOError) +Q(BrokenPipeError) +Q(BufferError) +Q(BytesWarning) +Q(ChildProcessError) +Q(ConnectionAbortedError) +Q(ConnectionError) +Q(ConnectionRefusedError) +Q(ConnectionResetError) +Q(DeprecationWarning) +Q(EOFError) +Q(EnvironmentError) +Q(Exception) +Q(FileExistsError) +Q(FileNotFoundError) +Q(FloatingPointError) +Q(FutureWarning) +Q(GeneratorExit) +Q(IOError) Q(ImportError) +Q(ImportWarning) Q(IndentationError) Q(IndexError) +Q(InterruptedError) +Q(IsADirectoryError) Q(KeyError) +Q(LookupError) +Q(MemoryError) Q(NameError) +Q(NotADirectoryError) Q(NotImplementedError) Q(OSError) +Q(OverflowError) +Q(PendingDeprecationWarning) +Q(PermissionError) +Q(ProcessLookupError) +Q(ReferenceError) +Q(ResourceWarning) +Q(RuntimeError) +Q(RuntimeWarning) Q(SyntaxError) +Q(SyntaxWarning) +Q(SystemError) +Q(SystemExit) +Q(TabError) +Q(TimeoutError) Q(TypeError) +Q(UnboundLocalError) +Q(UnicodeWarning) +Q(UserWarning) Q(ValueError) -Q(OverflowError) +Q(Warning) +Q(ZeroDivisionError) + Q(NoneType) @@ -144,13 +188,21 @@ Q(atan2) Q(ceil) Q(copysign) Q(fabs) -Q(floor) Q(fmod) -Q(frexp) +Q(floor) Q(isfinite) Q(isinf) Q(isnan) Q(trunc) +Q(modf) +Q(frexp) +Q(ldexp) +Q(degrees) +Q(radians) +Q(erf) +Q(erfc) +Q(gamma) +Q(lgamma) Q(mem_total) Q(mem_current) |