Re: Python Binary and Windows

2005-02-07 Thread Fredrik Lundh
"peetm" <[EMAIL PROTECTED]> wrote: > I'd like to compile (?) the DiffLib Python code into a binary form that can > be called by other Windows apps - like, I'd like to compile it into a DLL. > > Is this possible? you can link your DLL (or application) against the Python DLL, and use the Python API

Re: Python Binary and Windows

2005-02-07 Thread aurora
Thanks for making me aware of the difflib module. I don't know there is such cool module exists. You can make it available to other Windows program as a COM object. The win32 api should be all you need. It might be slightly challenging because some parameters are list of strings which might

Re: Python Binary and Windows

2005-02-07 Thread Diez B. Roggisch
peetm wrote: > Hi. > > I'd like to compile (?) the DiffLib Python code into a binary form that > can be called by other Windows apps - like, I'd like to compile it into a > DLL. > > Is this possible? Not so easy. Better install WinDiff. If you really have to do it, elmer will be of use for you.

Python Binary and Windows

2005-02-07 Thread peetm
Hi. I'd like to compile (?) the DiffLib Python code into a binary form that can be called by other Windows apps - like, I'd like to compile it into a DLL. Is this possible? Many thanks! -- http://mail.python.org/mailman/listinfo/python-list