Re: Options ExecCGI is off in this directory:

2013-08-16 Thread Xavi
You do not say the version of apache. If it's the 2.4 must change "allow from all" to "Require all granted". HTH -- Xavi El 16/08/2013 12:28, helmut_bl...@web.de escribió: Hello, I am desperately trying to get my python script running, but I alway get a 403-Error. apa

Re: Python Basic Doubt

2013-08-11 Thread Xavi
s__.__name__ Thanks. -- Xavi -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Basic Doubt

2013-08-10 Thread Xavi
to compare basic types in python 3, for example .- v = [] if type(v) is list: print('Is list...') Because I think it is more clear and faster than .- type(v) == [].__class__ ... or ... isinstance(v, list) Is this correct? Thanks. -- Xavi -- http://mail.python.org/mailman/listinfo/python-list