Re: Problem um xmlrpclib in a view

2006-04-23 Thread Rafael Jorge
If I run python manage.py runserver and try to access the page, it work right, with or without "import xmlrpclib"...humm...very stranger, maybe problem whit mod_python-3.1.4 or apache-2.0.53?? -- SDM - www.Garimpar.com/noticiashttp://sdm.zapto.org/--"Orientacao a Objeto sempre existiu, mas no final

Problem um xmlrpclib in a view

2006-04-23 Thread [EMAIL PROTECTED]
Hi, when I try to import xmlrpclib in my view, I got '' (nothing) from the request, like this this not work: ---8<--- import xmlrpclib def myfunc(request): return HttpResponse(..) --->8--- this work: ---8<--- #import xmlrpc