Message7110

Author dahlia
Recipients dahlia
Date 2012-05-20.21:29:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337549380.54.0.559658994245.issue1890@psf.upfronthosting.co.za>
In-reply-to
Content
Jython 2.7a1 seems not having __builtins__ while CPython 2.7.3 has.


Jython 2.7a1 (default:4f5e3c12edc0, May 16 2012, 13:40:33) 
[OpenJDK 64-Bit Server VM (Sun Microsystems Inc.)] on java1.6.0_24
Type "help", "copyright", "credits" or "license" for more information.
>>> __builtins__
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name '__builtins__' is not defined


Python 2.7.3 (default, Apr 20 2012, 22:39:59) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> __builtins__
<module '__builtin__' (built-in)>
History
Date User Action Args
2012-05-20 21:29:40dahliasetrecipients: + dahlia
2012-05-20 21:29:40dahliasetmessageid: <1337549380.54.0.559658994245.issue1890@psf.upfronthosting.co.za>
2012-05-20 21:29:40dahlialinkissue1890 messages
2012-05-20 21:29:40dahliacreate