poll() on OSX 10.3.9

2006-07-31 Thread Norman Khine
27;POLLNVAL', 'POLLOUT', 'POLLPRI', 'POLLRDBAND', 'POLLRDNORM', 'POLLWRBAND', 'POLLWRNORM', '__doc__', '__file__', '__name__', 'error', 'poll', 'select'] is there anything specific to do to the python installation before compiling. i am using the itools library from http://www.ikaaro.org/itools which uses this python module thanks -- Norman Khine -- http://mail.python.org/mailman/listinfo/python-list

Re: Using Python for my web site

2006-07-31 Thread Norman Khine
tions such as http://destinationsflybe.com as an example. for the mysql you can use the csv module. for now it has not been ported on window$, try gentoo or freebsd -- Norman Khine -- http://mail.python.org/mailman/listinfo/python-list

Configure python2.5 on Gentoo

2006-08-22 Thread Norman Khine
Hello, I have a strange result on a Gentoo machine in that, after I run ./configure and then type make, the make goes in circles. checking for c++... c++ configure: WARNING: By default, distutils will build C++ extension modules with "c++". If this is not intended, then set CXX on the config

Split with python

2006-08-29 Thread Norman Khine
Hello, I have a csv file which is has a field that has something like: text.csv "text (xxx)" "text (text) (yyy)" "text (text) (text) (zzz)" I would like to split the last '(text)' out and put it in a new column, so that I get: new_test.csv "text","(xxx)" "text (text)","(yyy)" "text (text) (tex

Validation of email

2006-09-12 Thread Norman Khine
Hello, What is the best way to generate a long authentication string and email this so that the user can reply and verify that the email address they have provided is authentic, similar I guess to the way Bugzilla works? Should this be server side or client? How would one tackle an expiry limit o

Reading image dimensions before it is loaded from a web form using python.

2007-06-30 Thread Norman Khine
Hello, I am writing an application using python that allows the user to upload an image to a folder on the server. Is there a way to get the size of the file before it has been uploaded onto the server and give an error if the size does not comply to the maximum size. So far, my apps loads the im