今日コーディングしていて、何かに気づきました。新しいインタープリターセッション(IDLE)を開き、dir
関数で定義されているものを確認すると、次のようになります。
$ python
>>> dir()
['__builtins__', '__doc__', '__name__', '__package__']
>>> dir(__builtins__)
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'ZeroDivisionError', '_', '__debug__', '__doc__', '__import__', '__name__', '__package__', 'abs', 'all', 'any', 'apply', 'basestring', 'bin', 'bool', 'buffer', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'cmp', 'coerce', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'raw_input', 'reduce', 'reload', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'Tuple', 'type', 'unichr', 'unicode', 'vars', 'xrange', 'Zip']
>>> import __builtin__
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'ZeroDivisionError', '_', '__debug__', '__doc__', '__import__', '__name__', '__package__', 'abs', 'all', 'any', 'apply', 'basestring', 'bin', 'bool', 'buffer', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'cmp', 'coerce', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'raw_input', 'reduce', 'reload', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'Tuple', 'type', 'unichr', 'unicode', 'vars', 'xrange', 'Zip']
>>> dir(__builtin__) == dir(__builtins__) # They seem to have the same things
True
最後の行に注意してください。
だから、私の質問は:
他のエイリアスはありますか?
Python人はそれらのいずれかを取り除くことを計画していますか?
自分のプログラムには何を使うべきですか?
Python 3?
どんな情報も貴重です!
重要:
UbuntuでPython 2.7.2+を使用しています。
python documentation: http://docs.python.org/reference/executionmodel.html から直接
デフォルトでは、
__main__
モジュールの場合、__builtins__
は組み込みモジュール__builtin__
です(注: 's'なし)。他のモジュールの場合、__builtins__
は__builtin__
モジュール自体の辞書のエイリアスです。
__builtins__
をユーザー作成の辞書に設定して、実行を制限した弱い形式を作成できます。CPython実装の詳細:ユーザーは
__builtins__
;に触れないでください。これは厳密に実装の詳細です。 builtins名前空間の値をオーバーライドするユーザーは、import
__builtin__
( 's'なし)モジュールを使用し、その属性を適切に変更する必要があります。モジュールのネームスペースは、モジュールが初めてインポートされるときに自動的に作成されます。
Python3では、この混乱を避けるために、モジュール__builtin__
はbuiltins
に名前が変更されています。
__builtin__
は、組み込み関数とタイプを含むモジュールです。名前__builtins__
は、実装の詳細と同じものが含まれています。つまり、それらのいずれかを使用する必要がある場合は、import __builtin__
を使用してから__builtin__
。 ドキュメント を参照してください。
これらは次のコードのように理解できます。 cpythonが開始されると、cpython load __builtin__
モジュールをグローバル名前空間に
インポート__builtin__
なので __builtins__