On Mon, 1 Aug 2005 10:42:22 -0700 (PDT),
<[EMAIL PROTECTED]> wrote:
>Hello list,
>
>Does anybody know how I can invoke the Word
>InchesToPoints function from Python using PythonWin32?
>
>
Why would you want to? This does exactly the same thing in WAY fewer
cycles:
def InchesToPoints( inches ):
return inches * 72.0
--
Tim Roberts, [EMAIL PROTECTED]
Providenza & Boekelheide, Inc.
_______________________________________________
Python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32