Re: GAE + recursion limit

2010-07-05 Thread Soltys
at remains is, I need to review the grammar and how processing happens that I reach that limit with GAE. Thanks guys, Soltys -- http://mail.python.org/mailman/listinfo/python-list

PyChecker under python's virtualenv

2010-02-03 Thread soltys
it, and found nothing in this area. I installed pychecker using python setup.py install from virtualenv. I looked at pychecker script - it uses correct python. Any help appreciate, Soltys -- http://mail.python.org/mailman/listinfo/python-list

Re: How to log messages _only once_ from all modules ?

2009-11-24 Thread Soltys
Ron Barak pisze: On Nov 24, 3:45 pm, Soltys wrote: Barak, Ron pisze: Hi, I'm trying to add the logging module to my application, but I seem to be missing something. My application (a wxPython one) has a main script that calls various helper classes. I want the log messages fro

Re: How to log messages _only once_ from all modules ?

2009-11-24 Thread Soltys
tml#logger-objects First thing mentioned is Logger.propagate which is, what I believe, you're looking for ;) -- Soltys "Free software is a matter of liberty not price" -- http://mail.python.org/mailman/listinfo/python-list

Re: Regular expression

2008-06-20 Thread Soltys
acter so the decode fails. You should specify whatever encoding you used for the source file. From the error message it looks like you used utf-8, so "string.decode('utf-8')" should give you a unicode string to work with. Or just specify source encoding like that: #!/usr/bi

Re: Regular expression

2008-06-19 Thread Soltys
: print "Valid" output : sys:1: DeprecationWarning: Non-ASCII character '\xc3' in file regu1.py on line 3, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details Valid when i make comment #value="this is Praveen" and released comment value

Re: How to set proxy for a python script to run

2008-04-18 Thread Soltys
that we can set the proxy? I did sth. like this: proxy_url = "http://user:[EMAIL PROTECTED]:8080" proxy_support = urllib2.ProxyHandler({'http': proxy_url}) opener = urllib2.build_opener(proxy_support) urllib2.install_opener(opener) src = urllib2.urlopen(url) now you can easi

Re: about a head line

2008-04-17 Thread Soltys
Penny Y. pisze: > I saw some scripts have a line at its begin: > > # encoding:gb2312 > > what's this? Why need it? thanks. > Have a look at PEP-0263 (http://www.python.org/dev/peps/pep-0263/) -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for Conferences/Events on Django, Python, MySQL, etc in Europe 2008?

2008-04-08 Thread Soltys
more can be found on http://www.europython.org/community Any other information can be found on http://www.python.org/community/workshops/ Regards, Soltys -- http://mail.python.org/mailman/listinfo/python-list