Message2039

Author bytecodesbr
Recipients
Date 2007-12-13.17:29:52
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
When call socket._fileobject, return error: 'module' object has no attribute '_fileobject'

=========================
Jython 2.2.1 (don't work)
=========================

C:\jython2.2.1>jython.bat
>>> import socket
>>> socket._fileobject
Traceback (innermost last):
  File "<console>", line 1, in ?
AttributeError: 'module' object has no attribute '_fileobject'


=====================
Python 2.5 (work fine)
=====================
C:\Python25>python.exe
>>> import socket
>>> socket._fileobject
<class 'socket._fileobject'>
History
Date User Action Args
2008-02-20 17:18:08adminlinkissue1850207 messages
2008-02-20 17:18:08admincreate