In message <[email protected]>, Nick Craig- Wood wrote:
> As a ctypes user I found this an interesting story - thanks for
> posting it!
By the way, I hate wildcard imports. In the ctypes docs, they recommend you
do this
from ctypes import *
but I prefer this:
import ctypes as ct
which explains the "ct." prefixes in my sample code, in case you were
wondering.
--
http://mail.python.org/mailman/listinfo/python-list
