I recently read somewhere that the special value None
in python is a singleton object of its own class, specifically NoneType
. This explained a lot, since most errors involving None
in python produce AttributeError
s instead of some special "NoneError" or something.
Since all of these AttributeErrors
reflected the attributes that NoneType
lacked, I became intrigued by what attributes NoneType
did have, if any.
I decided to look into this NoneType
and learn more about it. I've always found the best way to learn about a new language feature is to use it, so I tried instantiating NoneType
in IDLE:
>>> n = NoneType()
This produced an error:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
n = NoneType()
NameError: name 'NoneType' is not defined
Confused, I inspected None
to see if I'd gotten the type name correct. Sure enough,
>>> type(None)
<class 'NoneType'>
Now very confused, I did a quick google search. This revealed that for some reason NoneType was somehow removed in Python 3.
Well I though, ha ha! I can work around this by storing the type of None
in a variable, since classes are objects in python. This seemed to work:
>>> NoneType = type(None)
>>> n = NoneType()
And when I printed n, I got pretty much what I was expecting:
>>> print(n)
None
But then this happened:
>>> n is None
True
And:
>>> id(n)
506768776
>>> id(None)
506768776
My variable n
IS None
. Not only the same type as None
. It IS None
. This is not what I expected.
I tried using dis
to get more info on NoneType
, but when I called
>>> dis.dis(type(None))
It produced no output.
I then then tried investigating the __new__
method, which several users had mentioned in the comments:
dis.dis(type(None).__new__)
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
dis.dis(type(None).__new__)
File "C:\Python33\lib\dis.py", line 59, in dis
type(x).__name__)
TypeError: don't know how to disassemble builtin_function_or_method objects
>>>
More errors.
Here are my questions:
- Why is
n
the exact same Object asNone
? - Why was the language designed such that
n
is the exact same Object asNone
? - How would one even implement this behavior in python?
Other answers describe how to use
__new__
to implement a singleton, but that's not how None is actually implemented (in cPython at least, I haven't looked into other implementations).Trying to create an instance of None through
type(None)()
is special cased, and ends up calling the following C function:And
Py_RETURN_NONE
is defined here:Contrast this with the function that creates a normal python object:
When you create a normal object, memory for the object is allocated and initialized. When you try to create a new instance of
None
, all you get is a reference to the already existing_Py_NoneStruct
. That's why, no matter what you do, every reference toNone
will be the exact same object.The NoneType overrides
__new__
which always return the same singleton. The code is actually written in C sodis
cannot help, but conceptually it's just like this.Having only one None instance is easier to deal with. They are all equal anyway.
By overriding
__new__
... e.g.Why is
n
the exact same Object asNone
?The C implementation keeps a singleton instance.
NoneType.__new__
is returning the singleton instance.Why was the language designed such that n is the exact same Object as
None
?If there was not a singleton instance, then you could not rely on the check
x is None
since theis
operator is based on identity. AlthoughNone == None
is alsoTrue
, it's possible to havex == None
beTrue
whenx
is not actuallyNone
. See this answer for an example.How would one even implement this behavior in python?
You can implement this pattern by overridding
__new__
. Here's a basic example:Output:
Of course this simple example doesn't make it impossible to create a second instance.
Many immutable objects in Python are interned including
None
, smaller ints, and many strings.Demo:
See above -- speed, efficiency, lack of ambiguity and memory usage among other reasons to intern immutable objects.
Among other ways, you can override
__new__
to return the same object:For strings, you can call intern on Python 2 or sys.intern on Python 3