Tagged Questions

10
votes
4answers
13k views

How to handle a broken pipe (SIGPIPE) in python?

I've written a simple multi-threaded game server in python that creates a new thread for each client connection. I'm finding that every now and then, the server will crash because of a ...
3
votes
2answers
439 views

Python and FIFOs

I was trying to understand FIFOs using Python under linux and I found a strange behavior i don't understand. The following is fifoserver.py import sys import time def readline(f): s = ...
2
votes
2answers
48 views

Client Not Receiving Data in Python

I am very new to Python and have a basic question, can a client side of a network socket connection make receive data? In my question, the client is the one who initiates the connection, which is ...
2
votes
1answer
815 views

Python BaseHTTPServer, how do I catch/trap “broken pipe” errors?

I build a short url translator engine in Python, and I'm seeing a TON of "broken pipe" errors, and I'm curious how to trap it best when using the BaseHTTPServer classes. This isn't the entire code, ...
1
vote
1answer
74 views

Why does this socket connection only allow 1 send and receive?

Background I have a simple socket server setup that I am trying to allow simultaneous connections to and echo back the data. The client side launches several threads each making its own connection to ...
1
vote
2answers
398 views

Django: SyntaxError 'unexpected EOF' while saving a Form

I have a settings page which has two forms for handling the settings for two different Models. The Profile model form works. The Chef model form doesn't. The form fails gracefully, and isn't throwing ...
0
votes
1answer
733 views

Python socket.send() can only send once, then socket.error: [Errno 32] Broken pipe occurred

I'm a newbie in network programming, so please forgive me if this is a dumb question :) I created 1 client and 1 SocketServer.ThreadingMixIn server on Ubuntu 10.04.2 using Python2.7, but it seems like ...