Dear Python-Dev-ers,
about half of the tasks for the GHOP contest (described below) are
currently on the stdlib, Python core, or Py3K:
http://code.google.com/p/google-highly-open-participation-psf/issues/list?q=label:stdlib
http://code.google.com/p/google-highly-open-participat
I tried to write a simple asyncore-based server code, then I used a
simple client to establish a connection with it.
Once the client is connected server raises the following exception:
--- snippet ---
C:\Documents and Settings\billiejoex\Desktop\test>test.py
[]127.0.0.1:3003 Connected.
Traceback
2007/11/27, Bill Janssen <[EMAIL PROTECTED]>:
> Which branch is this?
The trunk, sorry.
--
.Facundo
Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/
Which branch is this?
Bill
> Seeing more in deep, I saw that Bill replaced in r58164, in this
> BasicTest, a lot of previous code (I think that from r57464) that
> actually tested it *locally*.
___
Python-Dev mailing list
Python-Dev@python.org
http://m
On Fri, 23 Nov 2007, Andreas Raab wrote:
> I'd like to be able to specify an explicit location for the .pyc files.
Me too, although for different reasons. I don't like my working
directories being filled with clutter by programs. When I work in Java I
always have javac aliased to use the -d o
...in my machine with no Internet connection.
I saw what's happening: there's a test in BasicTests that tries to
access "svn.python.org".
It's strange, because this test is an exact copy of the one in
NetworkTest (but the latter is included only if the "network" resource
is enabled).
Seeing more