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 -- http://mail.python.org/mailman/listinfo/py

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 func