2010-06-04

joshua0: (Default)
2010-06-04 10:29 am

Python sucks

joshua@escape:~$ python
Python 2.6.1 (r261:67515, Feb 11 2010, 00:51:29)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> foo = 1
>>> type(foo)
<type 'int'>
>>> type(type(foo))
<type 'type'>
>>> kind(type(foo))
Traceback (most recent call last):
  File "", line 1, in 
NameError: name 'kind' is not defined
>>>
:(