Christian Heimes wrote:
> Mirko Vogt wrote:
> > Hey,
> >
> > is there a way to use python2.6 without having used the installation
> > routine?
> >
> > When I install python2.6 and copy over the python-directory (C:\programs
> > \python2.6) to another windows
Hey,
is there a way to use python2.6 without having used the installation
routine?
When I install python2.6 and copy over the python-directory (C:\programs
\python2.6) to another windows host and trying to execute python.exe
there, I get an error that python26.dll could not be found.
On the host
Gabriel Genellina wrote:
> En Wed, 09 Jul 2008 15:02:56 -0300, Mirko Vogt <[EMAIL PROTECTED]> escribi�:
>
>> it seems that the socket-module behaves differently on unix / windows
>> when a timeout is set.
> [...]
>> Now I will change the code slightly - to be
Hey,
it seems that the socket-module behaves differently on unix / windows when a
timeout is set.
Here an example:
# test.py
import socket
sock=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
print 'trying to connect...'
sock.connect(('127.0.0.1',))
print 'connected!'
# executed on windo