paul@6 | 1 | #!/usr/bin/env python |
paul@6 | 2 | |
paul@6 | 3 | """ |
paul@6 | 4 | Simple built-in classes and functions. |
paul@6 | 5 | |
paul@6 | 6 | Copyright (C) 2015 Paul Boddie <paul@boddie.org.uk> |
paul@6 | 7 | |
paul@6 | 8 | This program is free software; you can redistribute it and/or modify it under |
paul@6 | 9 | the terms of the GNU General Public License as published by the Free Software |
paul@6 | 10 | Foundation; either version 3 of the License, or (at your option) any later |
paul@6 | 11 | version. |
paul@6 | 12 | |
paul@6 | 13 | This program is distributed in the hope that it will be useful, but WITHOUT |
paul@6 | 14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
paul@6 | 15 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
paul@6 | 16 | details. |
paul@6 | 17 | |
paul@6 | 18 | You should have received a copy of the GNU General Public License along with |
paul@6 | 19 | this program. If not, see <http://www.gnu.org/licenses/>. |
paul@6 | 20 | """ |
paul@6 | 21 | |
paul@6 | 22 | from __builtins__.core import object, type, function, BaseException, Exception, Warning |
paul@6 | 23 | |
paul@6 | 24 | # Exceptions. |
paul@6 | 25 | |
paul@6 | 26 | from __builtins__.exception import ( |
paul@6 | 27 | ArithmeticError, |
paul@6 | 28 | AssertionError, |
paul@6 | 29 | AttributeError, |
paul@6 | 30 | DeprecationWarning, |
paul@6 | 31 | EOFError, |
paul@6 | 32 | EnvironmentError, |
paul@6 | 33 | FloatingPointError, |
paul@6 | 34 | FutureWarning, |
paul@6 | 35 | GeneratorExit, |
paul@6 | 36 | ImportError, |
paul@6 | 37 | ImportWarning, |
paul@6 | 38 | IndentationError, |
paul@6 | 39 | IndexError, |
paul@6 | 40 | IOError, |
paul@6 | 41 | KeyError, |
paul@6 | 42 | KeyboardInterrupt, |
paul@6 | 43 | LookupError, |
paul@6 | 44 | MemoryError, |
paul@6 | 45 | NameError, |
paul@6 | 46 | NotImplementedError, |
paul@6 | 47 | OSError, |
paul@6 | 48 | OverflowError, |
paul@6 | 49 | PendingDeprecationWarning, |
paul@6 | 50 | ReferenceError, |
paul@6 | 51 | RuntimeError, |
paul@6 | 52 | RuntimeWarning, |
paul@6 | 53 | StandardError, |
paul@6 | 54 | StopIteration, |
paul@6 | 55 | SyntaxError, |
paul@6 | 56 | SyntaxWarning, |
paul@6 | 57 | SystemError, |
paul@6 | 58 | SystemExit, |
paul@6 | 59 | TabError, |
paul@6 | 60 | TypeError, |
paul@6 | 61 | UnboundLocalError, |
paul@6 | 62 | UnicodeDecodeError, |
paul@6 | 63 | UnicodeEncodeError, |
paul@6 | 64 | UnicodeError, |
paul@6 | 65 | UnicodeTranslateError, |
paul@6 | 66 | UnicodeWarning, |
paul@6 | 67 | UserWarning, |
paul@6 | 68 | ValueError, |
paul@6 | 69 | ZeroDivisionError |
paul@6 | 70 | ) |
paul@6 | 71 | |
paul@6 | 72 | |
paul@6 | 73 | # Classes. |
paul@6 | 74 | |
paul@6 | 75 | from __builtins__.bool import bool |
paul@6 | 76 | from __builtins__.buffer import buffer |
paul@6 | 77 | from __builtins__.complex import complex |
paul@6 | 78 | from __builtins__.dict import dict |
paul@6 | 79 | from __builtins__.file import file |
paul@6 | 80 | from __builtins__.float import float |
paul@6 | 81 | from __builtins__.int import int |
paul@6 | 82 | from __builtins__.span import xrange, slice |
paul@6 | 83 | from __builtins__.iterator import listiterator |
paul@6 | 84 | from __builtins__.list import list |
paul@6 | 85 | from __builtins__.long import long |
paul@6 | 86 | from __builtins__.none import NoneType |
paul@6 | 87 | from __builtins__.notimplemented import NotImplementedType |
paul@6 | 88 | from __builtins__.set import frozenset, set |
paul@10 | 89 | from __builtins__.str import basestring, str, unicode |
paul@6 | 90 | from __builtins__.tuple import tuple |
paul@6 | 91 | |
paul@6 | 92 | # Functions. |
paul@6 | 93 | |
paul@6 | 94 | from __builtins__.attribute import getattr, hasattr, setattr |
paul@6 | 95 | from __builtins__.character import chr, hex, oct, ord, unichr |
paul@6 | 96 | from __builtins__.comparable import cmp, hash |
paul@6 | 97 | from __builtins__.identity import callable, help, id, isinstance, issubclass, repr |
paul@6 | 98 | from __builtins__.io import eval, open, raw_input |
paul@6 | 99 | from __builtins__.iterable import all, any, enumerate, filter, iter, len, map, max, min, range, reduce, reversed, sorted, sum, zip |
paul@6 | 100 | from __builtins__.namespace import dir, globals, locals, vars |
paul@6 | 101 | from __builtins__.numeric import abs, divmod, pow, round |
paul@6 | 102 | |
paul@6 | 103 | # vim: tabstop=4 expandtab shiftwidth=4 |