1

由于超出此问题范围的原因,我正在构建一个序列化机制。我遇到了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 中的一个疏忽。

4

5 回答 5

2

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

>>> NoneType = type(None)

将此类型绑定到一个名称,但这没有共同的目的:isinstance(x, NoneType)将是一个人为的等价于x is None; 构造函数提出一个TypeError声明,表明您不应该构造实例;并且从它派生也是被禁止的。

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

于 2012-10-30T17:03:57.473 回答
1

这很奇怪。但是关于 python 2 中的类和对象的许多奇怪的事情也是如此。从简单的脚本演变为成熟的 OO 的一堆语言都是如此。Python 3 旨在解决这个问题。

NoneType 已经是一个特例,因为它是单例的类对象,所以它不能被称为构造函数。

TypeError: cannot create 'NoneType' instances

因此,如果您正在编写通用序列化程序,那么无论如何您都需要特殊情况 None,无论您是否无法查找类对象。

于 2012-10-30T18:38:11.373 回答
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是)

于 2012-10-30T16:56:20.733 回答
0

你应该尝试: getattr(builtin,"None")getattr(builtin,"NoneType"),因为NoneType是 的值type(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
于 2012-10-30T16:57:01.657 回答
0

NoneType 在类型模块中可用。

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

如果您对类型做任何事情,Infact types 模块是使用的正确位置,不要依赖内置函数中存在的类型

这可能是因为 None 不是真正的类型,它是内置常量。甚至文档都说 None 的类型是 types.NoneType,但你是对的,它是以特殊方式实现的,并且与所有其他类型不一致。

于 2012-10-30T17:14:00.550 回答