error: (10035, 'The socket operation...

Benjamin Kaplan bsk16 at case.edu
Sun Apr 27 20:41:57 EDT 2008


oops, forgot to post this to the list. sorry.

On Sun, Apr 27, 2008 at 8:41 PM, Benjamin Kaplan <bsk16 at case.edu> wrote:
>
> On Sun, Apr 27, 2008 at 7:01 PM, Don Hanlen <dhanlen at owt.com> wrote:
>  > IDLE internal error in runcode()
>  >  Traceback (most recent call last):
>  >   File "C:\PYTHON25\lib\idlelib\rpc.py", line 235, in asyncqueue
>  >     self.putmessage((seq, request))
>  >   File "C:\PYTHON25\lib\idlelib\rpc.py", line 332, in putmessage
>  >     n = self.sock.send(s[:BUFSIZE])
>  >  error: (10035, 'The socket operation could not complete without
>  >  blocking')
>  >
>  >  Does this look familiar to anyone?  I can't figure out what to do
>  >  about it.  Python 2.5, windoze.  I get it when I execute a Tkinter op
>  >  that works elsewhere.
>  >
>  >  changing this:
>  >
>  >  t = self.b.create_text(
>  >     (point.baseX + 1)*self.checkerSize/2 + fudge,
>  >     y + fudge,
>  >     text = str(point.occupied),
>  >     width = self.checkerSize)
>  >
>  >  to
>  >
>  >  t = self.b.create_text(
>  >     (point.baseX + 1)*self.checkerSize/2 + fudge,
>  >     y + fudge,
>  >     text = str(point.occupied),
>  >     font=("Times", str(self.checkerSize/2), "bold"),
>  >     width = self.checkerSize)
>  >
>  >  for example.  The same code works fine elsewhere.  I thought I'd ask
>  >  here before I try (no clue) increasing BUFSIZE in rpc.py?  I'm not
>  >  crazy about tinkering with code I have no clue about..
>  >  --
>  >  don
>  >  --
>  >  http://mail.python.org/mailman/listinfo/python-list
>  >
>
>  It might have something to do with the fact that IDLE uses Tkinter,
>  but, having never used it myself, I'm not sure.
>



More information about the Python-list mailing list