Re: combine doxygen and doc-strings?
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. > More details. > """ > pass > > > ? > Obviously, one would like to write the documentaion only once. > > Best regards, > Gabriel. > Gabriel, Although it is not documented yet, doxygen understands the following: def func( a ): """! @brief Documentation for a function. @var a This is a variable @return Nothing More details. """ I found this information in a mailing list (of which I don't know it's name anymore) Good luck, Henk -- http://mail.python.org/mailman/listinfo/python-list
Re: MySQLdb windows binaries for Python 2.5??
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 > insight would be appreciated. > > Thanks. > > Chris -- http://mail.python.org/mailman/listinfo/python-list
Re: wincerapi
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 something from scratch, which I hope to publish soon. It will be capable of copying files to/and from a CE Device, modify the registry, run programs on the CE device etc. Please stay tuned as I'm still working on it. I will upload it to http://henk.van.asselt.googlepages.com/home as soon as possible. Henk -- http://mail.python.org/mailman/listinfo/python-list
Re: del and sets proposal
"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/python-list