Duplicating Modules
Hi folks! Short: There is a way to dumplicate a module ? I tried copy.deepcopy(module) but hangs with an error (also with standard modules ). The only solution that I have by now is creating two files and importing them. I.E: > cp module.py module1.py >> import module >> import module1 Any Ideas? P.S: I know that there is some design Issue here, but my boss says no :) Misto -- http://mail.python.org/mailman/listinfo/python-list
Re: Well written open source Python apps
I suggest also these: Spark: - http://pages.cpsc.ucalgary.ca/~aycock/spark/ Few files. I like how doc strings are used for handling the grammar. Twisted: http://twistedmatrix.com/ I like everything, from test to comments! (many are funny) Misto -- http://mail.python.org/mailman/listinfo/python-list
Re: [ANN] Lupa 0.6 - Lua in Python
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
