__socketFile is created by this method
def connect(hostName) :
import errno
global __connSocket
global __socketFile
__connSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
__connSocket.setsockopt(socket.SOL_TCP, socket.TCP_NODELAY, 0)
try:
ret = __connSocke
How was __socketFile created? Is there a possibility that it's looking for
"\r\n" but only getting "\n"? (I can't remember anything about IronPython's
handling of eol.)
On Thu, Mar 28, 2013 at 3:53 PM, Claudio C wrote:
> Hello everybody,
>
> I'm calling this method with IronPython but this never