Python模块__builtin__没有属性NoneType

时间:2012-10-30 16:50:25

标签: python

由于这个问题范围之外的原因,我正在构建一个序列化机制。我遇到了None个对象的问题,我认为我需要特殊情况。任何人都可以解释为什么NoneType与其他内置类型的处理方式不同?或者我错过了什么?

>>> import sys
>>> builtin = sys.modules['__builtin__']
>>> getattr(builtin,'int')
<type 'int'>
>>> getattr(builtin,'list')
<type 'list'>
>>> getattr(builtin,'NoneType')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'NoneType'
Ubuntu上的

python 2.6.5

澄清

当然

getattr(builtin,'None')

工作并返回None对象,该对象是NoneType的实例。但是__builtin__模块中的类对象存在于其他所有内容中。因此,此代码适用于除None之外的每种内置类型:

klass = getattr(builtin, obj.__class__.__name__)

这是有意义的

>>> type(0).__module__
'__builtin__'
>>> type("foo").__module__
'__builtin__'
>>> type(None).__module__
'__builtin__'

None失败的事实似乎是对Python的疏忽,除非我遗漏了什么。

5 个答案:

答案 0 :(得分:2)

我认为你所谓的NoneType被特别对待,因为你几乎不需要访问它。你可以说

>>> NoneType = type(None)

将此类型绑定到名称,但这不起任何共同目的:isinstance(x, NoneType)将是x is None的人为设备;构造函数引发TypeError表明你不应该构造实例;并且也是禁止的。

您仍然可以通过type(None)None.__class__types.NoneType获取该类型,但是,如果您需要它用于某些高级目的。

答案 1 :(得分:1)

类型模块中提供NoneType。

>>> import types
>>> types.NoneType
<type 'NoneType'>

如果您正在对类型执行任何操作,那么Infact types模块是正确使用的地方,不依赖于 builtins

中存在的类型

可能做的事情是,None不是真正的类型,它是builtin constant。甚至文档都说None的类型是types.NoneType,但是你是对的,它是以特殊方式实现的,并且与所有其他类型不一致。

答案 2 :(得分:1)

很奇怪。但是在python 2中有很多关于类和对象的奇怪之处。对于从简单脚本演变为完整OO的一堆语言也是如此。 Python 3旨在解决这个问题。

NoneType已经是一个特殊情况,因为它是单例的类对象,所以它不能作为构造函数调用。

TypeError: cannot create 'NoneType' instances

所以,如果你正在编写一个通用的序列化程序,那么你无论如何都需要特殊情况,无论你是否不能查找类对象。

答案 3 :(得分:0)

你试过看过:

>>> dir(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']

NoneType未列为内置类型(即使None是)

答案 4 :(得分:0)

您应该尝试:getattr(builtin,"None")而不是getattr(builtin,"NoneType"),因为NoneTypetype(None)的值,所以它不是builtin的属性。

In [49]: type(None)

Out[49]: <type 'NoneType'>

这不起作用,因为Python无法在任何地方找到NoneType

In [50]: type(NoneType)
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)

/home/monty/<ipython console> in <module>()
NameError: name 'NoneType' is not defined