python regex negative lookahead assertions problems

2009-11-22 Thread Jelle Smet
lqksjfhqisudfh qiusdfhq iusfh' re.match('.*(?!warning)',line) _sre.SRE_Match object at 0xb75b1598 I would expect that this would NOT match as it's a negative lookahead and warning is in the string. Thanks, -- Jelle Smet http://www.smetj.net -- http://mail.python.org/mailman/listinfo/python

SimpleXMLRPCServer and creating a new object on for each new client request.

2009-05-06 Thread Jelle Smet
Hi list, My goals is to have concurrent and separated client sessions using xmlrpc. Initially my though was that SimpleXMLRPCServer was able to create a new object instance for each incoming request. But this doesn't appear to be the case, unless I'm overlooking something, if so please point me