[Twisted-Python] Fwd: Twisted WSGI (trunk) + Django 1.1.1 + Pinax Twisted WSGI setup == broken forms?

2009-10-30 Thread sstein...@gmail.com
Hi! I've been pulling my hair out all day... I have a Django 1.1.x project running under Twisted Trunk (27392) using WSGI. I've been having mega-problems with forms not showing up in Django's REQUEST object so I decided to nail it down to the simplest case. I thought I was only

Re: [Twisted-Python] Logging to both console and file (using twisted logging API)?

2009-10-30 Thread David Bolen
naman jain writes: > I wanted to log in a file and keep the console also going with it. I can read this as either: * Keep file logs and stdout/console completely separate, or * File gets explicit logs and copies of stdout, but stdout also goes to console as well. The latter is somethin

Re: [Twisted-Python] Using a custom reactor in twisted trial for test cases?

2009-10-30 Thread Andrew Francis
Hi Crispin: Message: 8 Date: Fri, 30 Oct 2009 17:38:12 +0800 From: Crispin Wellington Subject: [Twisted-Python] Using a custom reactor in twisted trial for     test    cases? To: twisted-python@twistedmatrix.com Message-ID: <1256895492.4200.9.ca...@wolfwood> Content-Type: text/plain >I am using

Re: [Twisted-Python] Using a custom reactor in twisted trial for test cases?

2009-10-30 Thread exarkun
On 09:38 am, cwelling...@ccg.murdoch.edu.au wrote: >Hi there, > >I am using twisted trial to run test cases for an application. The >application however uses stackless python and has a custom stackless >reactor. I implemented this reactor like this... It looks like your custom reactor is mainly in

[Twisted-Python] Regarding Ticket 3629, Error in adbapi Connection Pool in cleanup

2009-10-30 Thread Vishal Shetye
Hi, I was facing the issue as noted here http://twistedmatrix.com/trac/ticket/3629. As I see, python 2.5 can be build with pysqlite2.1.3 and sqlite 3.0.8 or later. However, support for a connection to be moved across multiple threads was added to sqlite at version3.3.1. Last comment in the ticket

[Twisted-Python] Using a custom reactor in twisted trial for test cases?

2009-10-30 Thread Crispin Wellington
Hi there, I am using twisted trial to run test cases for an application. The application however uses stackless python and has a custom stackless reactor. I implemented this reactor like this... stacklessreactor.py --- # Use epoll() as our base reactor fro