Message5276

Author gutworth
Recipients gutworth
Date 2009-10-27.21:01:06
SpamBayes Score 2.1303313e-05
Marked as misclassified No
Message-id <1256677266.7.0.595610262026.issue1497@psf.upfronthosting.co.za>
In-reply-to
Content
$ ./dist/bin/jython
Jython 2.5.1+ (trunk:6914, Oct 27 2009, 15:50:22)
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_14
Type "help", "copyright", "credits" or "license" for more information.
>>> import ast
>>> ast.expr.__bases__
(<type '_ast.AST'>,)
>>> ast.Name.__bases__
(<type '_ast.AST'>,)
>>> ast.For.__bases__
(<type '_ast.AST'>,)

$ python
Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ast
>>> ast.expr.__bases__
(<type '_ast.AST'>,)
>>> ast.Name.__bases__
(<class '_ast.expr'>,)
>>> ast.For.__bases__
(<class '_ast.stmt'>,)
History
Date User Action Args
2009-10-27 21:01:06gutworthsetrecipients: + gutworth
2009-10-27 21:01:06gutworthsetmessageid: <1256677266.7.0.595610262026.issue1497@psf.upfronthosting.co.za>
2009-10-27 21:01:06gutworthlinkissue1497 messages
2009-10-27 21:01:06gutworthcreate