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" wrote in message
news:94dbc92b-0682-4995-b358-0c615c95a...@x6g2000prc.googlegroups.com...
> Hey ev
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" wrote in message
news:mailman.1646.1236751732.11746.python-l...@python.org
"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
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
>
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
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