misc.






['ArithmeticError', 'AssertionError', '', 'BaseException', 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', '', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', '', '', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', '', 'NotImplemented', '', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StopIteration', '', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', '', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', '', 'Warning', '', '_', '__build_class__', '__debug__', '', '__import__', '', '__package__', 'abs', '', '', 'ascii', 'bin', '', 'bytearray', 'bytes', '', '', '', '', '', '', '', '', '', '', '', '', '', 'exit', '', '', '', 'frozenset', '', '', '', 'hash', '', '', '', 'input', '', '', '', 'iter', '', '', '', '', '', '', 'memoryview', '', 'next', '', '', '', '', 'pow', '', 'property', 'quit', '', '', '', '', '', '', 'slice', '', '', '', '', '', '', '', '', '']

from nonlocal del global as import
sorted reversed

>>> x[3]
...
TypeError: 'myList' object does not support indexing
>>> x[3] = 4
...
TypeError: 'myList' object does not support item assignment
>>> del x[0]
...
TypeError: 'myList' object doesn't support item deletion
>>>