Re: HTTP POST File without cURL

2009-09-09 Thread Jarkko Torppa
/selector ... Content-type: application/zip data The backend is broken, they should have used PUT for that. Search for python http put and adapt, or lookt at urllib(2)/httplib and roll your own. -- Jarkko Torppa -- http://mail.python.org/mailman/listinfo/python-list

Re: Seeding the rand() Generator

2009-08-04 Thread Jarkko Torppa
in there. -- Jarkko Torppa -- http://mail.python.org/mailman/listinfo/python-list

Re: *nix tail -f multiple log files with Thread

2009-02-13 Thread Jarkko Torppa
/completion/... -- Jarkko Torppa, Elisa -- http://mail.python.org/mailman/listinfo/python-list

Re: multiprocessing vs thread performance

2008-12-29 Thread Jarkko Torppa
(4 iters) 0.05 seconds threaded (4 threads)0.000598 seconds processes (4 procs) 0.007816 seconds non_threaded (8 iters) 0.08 seconds threaded (8 threads)0.001173 seconds processes (8 procs) 0.015504 seconds -- Jarkko Torppa, Elisa -- http://mail.python.org/mailman

Re: 65K length limitation in MySQLdb?

2008-06-09 Thread Jarkko Torppa
on your sql engine, use longtext. http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html -- Jarkko Torppa -- http://mail.python.org/mailman/listinfo/python-list

Re: design choice: multi-threaded / asynchronous wxpython client?

2008-04-27 Thread Jarkko Torppa
for races after the upcoming Try using an HTTP HEAD instruction instead to check if the data has changed since last time. Get If-Modified-Since is still better (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html 14.25) -- Jarkko Torppa -- http://mail.python.org/mailman/listinfo/python-list