Re: [ANN] Lupa 0.6 - Lua in Python

2010-07-19 Thread Fabrizio Milo aka misto
This is very very interesting. Do you have any direct application of it ? I know games like World of Warcraft uses Lua as scripting language. Thanks. Fabrizio -- Luck favors the prepared mind. (Pasteur) -- http://mail.python.org/mailman/listinfo/python-list

Re: cPAMIE 2.0 released!!

2006-02-22 Thread Fabrizio Milo
you forgot the link :) http://pamie.sourceforge.net/ -- http://mail.python.org/mailman/listinfo/python-list

Re: aborting without killing the python interpreter

2006-02-19 Thread Fabrizio Milo
import sys def main(): print 'exiting' sys.exit() try: main() except SystemExit: pass > I suspect I may need to use exceptions, but I'm hoping > not to need them. Thanks. Use the Exceptions! -- http://mail.python.org/mailman/listinfo/python-list

Re: strange error I can't figure out...

2006-02-18 Thread Fabrizio Milo
Is well indented ? -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI and graph

2005-12-23 Thread Fabrizio Milo
o roll up your own python script to build your dot file. Fabrizio Milo aka Misto -- http://mail.python.org/mailman/listinfo/python-list

Re: pyUnit and dynamic test functions

2005-12-22 Thread Fabrizio Milo
ename ): try: fd = open( filename, 'r') tc = TestStub( *fd.read().split("~") ) del fd return tc except: import traceback; traceback.print_exc() raise TestStubException( 'Failed creating test case from file : %s'%filenam