Re: [Pydev-code] Python versions to support (was: Re: Java 7 and Apache Commons)
Brought to you by:
fabioz
From: Derrick H. <ds...@dm...> - 2013-08-24 14:19:50
|
On Sat, Aug 24, 2013 at 11:33:29AM +0100, Jonah Graham wrote: [...] | [2] xmlrpc was not part of 2.1, so pydev uses the local version, but this | is the error we get: [...] | � File | "/scratch/pydev/Pydev/plugins/org.python.pydev/pysrc/_pydev_xmlrpclib.py", | line 159, in ? | � � _bool_is_builtin = False.__class__.__name__ == "bool" | AttributeError: 'int' object has no attribute '__class__' For reference, types and classes were unified in Python 2.2. (int was not a class in 2.1) 2.2 was released in 2001. http://www.python.org/download/releases/2.2.3/descrintro/ http://www.python.org/doc/versions/ -Derrick |