In Python language, what is (void) referring to?

Steven D'Aprano steve+comp.lang.python at pearwood.info
Sat Sep 21 05:59:11 EDT 2013


On Sat, 21 Sep 2013 02:10:49 -0700, Don Sylvia wrote:

> void...........?

In Python, void doesn't mean anything.

[steve at ando ~]$ python
Python 2.7.2 (default, May 18 2012, 18:25:10)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> void
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'void' is not defined


What gave you the idea that void was part of Python?


-- 
Steven



More information about the Python-list mailing list