Re: 3.2 can't extract tarfile produced by 2.7

2012-12-26 Thread Xavier Combelle
You probably want to write of = open("DUMP.tbz", "wb") and gf =open("DUMP.tbz", "rb") -- http://mail.python.org/mailman/listinfo/python-list

Re: Batching HTTP requests with httplib (Python 2.7)

2012-09-17 Thread Xavier Combelle
instead of Le 14/09/2012 12:56, Dwight Hutto a écrit : service_num_list = [num for num in range(0,5)] for service_num in service_num_list: eval("web_service_call%i(%i)" % (service_num,service_num)) service_num_list = [num for num in range(0,5)] for service_num in service_num_list:

Re: Creating a simple CGI Script

2012-08-02 Thread Xavier Combelle
In server.py you made a mistake in the declaration of the cgi directory it should be handler.cgi_directories = ["/"] Le 02/08/2012 20:20, Smaran Harihar a écrit : Hi, I am trying to create a simple CGI Script and following this tutorials