[python-win32] python 2.5

2008-03-17 Thread Tarun Kapoor
I want to use python win32 extensions on python 2.5 but it seems like
they were built for 2.3... 

I copied the win32 folders from C:\python23\lib\site-packages to
C:\python25\lib\site-packages but it does not work

Is there a workaround ? anyone using it ?

-TK



Disclaimer

This e-mail and any attachments is confidential and intended solely for the use 
of the individual(s) to whom it is addressed. Any views or opinions presented 
are solely those of the author and do not necessarily represent those of 
Waterstone Capital Management, L.P and affiliates. If you are not the intended 
recipient, be advised that you have received this e-mail in error and that any 
use, dissemination, printing, forwarding or copying of this email is strictly 
prohibited. Please contact the sender if you have received this e-mail in 
error. You should also be aware that e-mails are susceptible to interference 
and you should not assume that the contents of this e-mail originated from the 
sender above or that they have been accurately reproduced in their original 
form. Waterstone Capital Management, L.P. and affiliates accepts no 
responsibility for information, or errors or omissions in this e-mail or use or 
misuse thereof. If in doubt, please verify the authenticity with the sender.

___
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32


Re: [python-win32] python 2.5

2008-03-17 Thread Werner F. Bruhin
Tarun Kapoor wrote:
 I want to use python win32 extensions on python 2.5 but it seems like 
 they were built for 2.3…
the newer builds are on sourceforge, including ones for Python 2.5 and 2.6.

https://sourceforge.net/project/platformdownload.php?group_id=78018

Werner

___
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32


Re: [python-win32] python 2.5

2008-03-17 Thread Tarun Kapoor
Worked !! 
Mucho Gracias !

-Original Message-
From: Werner F. Bruhin [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 17, 2008 1:06 PM
To: Tarun Kapoor
Cc: python-win32@python.org
Subject: Re: python 2.5

Tarun Kapoor wrote:
 I want to use python win32 extensions on python 2.5 but it seems like 
 they were built for 2.3...
the newer builds are on sourceforge, including ones for Python 2.5 and
2.6.

https://sourceforge.net/project/platformdownload.php?group_id=78018

Werner


Disclaimer

This e-mail and any attachments is confidential and intended solely for the use 
of the individual(s) to whom it is addressed. Any views or opinions presented 
are solely those of the author and do not necessarily represent those of 
Waterstone Capital Management, L.P and affiliates. If you are not the intended 
recipient, be advised that you have received this e-mail in error and that any 
use, dissemination, printing, forwarding or copying of this email is strictly 
prohibited. Please contact the sender if you have received this e-mail in 
error. You should also be aware that e-mails are susceptible to interference 
and you should not assume that the contents of this e-mail originated from the 
sender above or that they have been accurately reproduced in their original 
form. Waterstone Capital Management, L.P. and affiliates accepts no 
responsibility for information, or errors or omissions in this e-mail or use or 
misuse thereof. If in doubt, please verify the authenticity with the!
  sender.


___
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32


Re: [python-win32] python 2.5

2008-03-17 Thread Tim Roberts
Tarun Kapoor wrote:

 I want to use python win32 extensions on python 2.5 but it seems like 
 they were built for 2.3…

 I copied the win32 folders from C:\python23\lib\site-packages to 
 C:\python25\lib\site-packages but it does not work….

 Is there a workaround ? anyone using it ?


For future reference, a Python extension written in C only works for a 
single major version.  That is, an extension built for 2.4.1 will work 
with any 2.4 version, but not with 2.3 or 2.5.

This is because the Python interpreter actually lives in a DLL 
(python23.dll, python24.dll. python25.dll), and the extension must link 
with a single version of that DLL.

-- 
Tim Roberts, [EMAIL PROTECTED]
Providenza  Boekelheide, Inc.

___
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32