[modwsgi] Re: mod_wsgi Python 2.6 win32 binary

2008-10-17 Thread m0nonoke
Any news? On Oct 10, 2:53 am, Graham Dumpleton [EMAIL PROTECTED] wrote: 2008/10/9 m0nonoke [EMAIL PROTECTED]: Any chance of adding a python 2.6 windows binary? Adal, any chance of this? Thanks. Graham --~--~-~--~~~---~--~~ You received this message

[modwsgi] Whats wrong? (urllib.urlopen())

2008-10-17 Thread Prunikov
Simple example. def application(environ, start_response): source = 'source' import urllib2 url = 'http://www.google.com/' urllib2.urlopen(url) response_headers = [('Content-type', 'text/html'), ('Content-Length', str(len(source)))]

[modwsgi] Re: Whats wrong? (urllib.urlopen())

2008-10-17 Thread Clodoaldo
On Oct 17, 6:43 pm, Prunikov [EMAIL PROTECTED] wrote: Simple example. def application(environ, start_response): source = 'source' import urllib2 url = 'http://www.google.com/' urllib2.urlopen(url) response_headers = [('Content-type', 'text/html'),

[modwsgi] Re: Whats wrong? (urllib.urlopen())

2008-10-17 Thread Graham Dumpleton
2008/10/18 Prunikov [EMAIL PROTECTED]: Simple example. def application(environ, start_response): source = 'source' import urllib2 url = 'http://www.google.com/' urllib2.urlopen(url) response_headers = [('Content-type', 'text/html'),

[modwsgi] Re: Whats wrong? (urllib.urlopen())

2008-10-17 Thread Graham Dumpleton
2008/10/18 Graham Dumpleton [EMAIL PROTECTED]: 2008/10/18 Prunikov [EMAIL PROTECTED]: Simple example. def application(environ, start_response): source = 'source' import urllib2 url = 'http://www.google.com/' urllib2.urlopen(url) response_headers = [('Content-type',

[modwsgi] Re: Whats wrong? (urllib.urlopen())

2008-10-17 Thread Prunikov
Upgraded, the same problem. On Oct 18, 12:43 am, Clodoaldo [EMAIL PROTECTED] wrote: On Oct 17, 6:43 pm, Prunikov [EMAIL PROTECTED] wrote: Simple example. def application(environ, start_response):     source = 'source'     import urllib2     url = 'http://www.google.com/'