Re: Command parsing... best module to use?

2009-11-07 Thread van Asselt
Hello Colin, I have been using 'cmdloop.py' from Crutcher Dunnavant in a few programs See http://py-cmdloop.googlecode.com/svn/trunk/cmdloop.py Regards, Henk - Collin D collin.da...@gmail.com wrote in message

Re: Problem with os.chdir()

2009-03-11 Thread van Asselt
Hello, In order to prevent this type of problems, I alway do the following: import path path = something path = os.path.normpath(path) os.chdir(path) This prevents a lot of problems for me. Regards, Henk Tim Golden m...@timgolden.me.uk wrote in message

Re: del and sets proposal

2008-10-16 Thread Henk . van . Asselt
Life was like a box of chocolates. You never know what you're gonna get. Regardless of how it is implemented, mathematically a set is a collection of items. The order does not matter, an item is part of a set, or is not part of a set. Period. Henk --

Re: MySQLdb windows binaries for Python 2.5??

2006-11-11 Thread Henk . van . Asselt
I'm also looking for a MySQLdb binary for windows. This is holding me from upgrading from Python 2.4 to Python 2.5 ! Or does anybody know of alternatives ? I have to connect directly to an MySQL database. Henk HI All, Does such a beast exist? Have been looking but haven't seen any. Any

Re: wincerapi

2006-05-26 Thread Henk van Asselt
Tim Williams wrote: Does anyone have a copy of the wincerapi module.It appears not to be in the win32 extensions anymore, and I've googled lots but not found it available anywhere. Thanks Well, This is something I have been struggling for a long time as well. I have been writing

Re: combine doxygen and doc-strings?

2005-11-20 Thread Henk van Asselt
Gabriel Zachmann wrote: Is there a way to combine doxygen comments, like this one ## Documentation for a function. # @var a - variable # More details. def func( a ): pass with the doc strings, like this one def func( a ): Documentation for a function.