Issue1850207

classification
Title: socket._fileobject - AttributeError: 'module' object has no
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: bytecodesbr, pjenvey
Priority: normal Keywords:

Created on 2007-12-13.17:29:52 by bytecodesbr, last changed 2007-12-13.17:55:34 by pjenvey.

Messages
msg2039 (view) Author: Daniel Menezes (bytecodesbr) Date: 2007-12-13.17:29:52
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'>
msg2040 (view) Author: Philip Jenvey (pjenvey) Date: 2007-12-13.17:55:34
This is already fixed on the 2.2 branch (will be fixed in 2.2.2)
History
Date User Action Args
2007-12-13 17:29:52bytecodesbrcreate