Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-17 Thread Mark Hammond
Hrm - I can't explain that. A quick check of the 218 release shows that .pyd file exists in both the 2.7 and 3.3 builds, both 32 and 64bit versions (I didn't check all of them, but I'm guessing they are in the rest too) What version of Python and pywin32 are you using? If you are using

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-15 Thread Udo Weik
Hello Mark, import win32com.axscript.axscript import win32com.axdebug.axdebug And see if that works? If so, maybe try and edit win32com\axscript\client\framework.py, find the error message you reported and print some details of the exception to try and determine why it can't find that

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Udo Weik
Hello again Mark, thanks for your answer. Debugging should work out of the box - what problems are you seeing? I'm using a Delphi-component. That component checks whether the ActiveX debug interface is available (Windows Scripting Host, WSH). When I start my app, I get the following error

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Mark Hammond
Can you try: import win32com.axscript.axscript import win32com.axdebug.axdebug And see if that works? If so, maybe try and edit win32com\axscript\client\framework.py, find the error message you reported and print some details of the exception to try and determine why it can't find that

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Udo Weik
Hello Mark, import win32com.axscript.axscript import win32com.axdebug. And see if that works? If so, maybe try and edit win32com\axscript\client\framework.py, find the error message you reported and print some details of the exception to try and determine why it can't find that

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-14 Thread Mark Hammond
On 15/02/2013 10:32 AM, Udo Weik wrote: Hello Mark, import win32com.axscript.axscript import win32com.axdebug. And see if that works? If so, maybe try and edit win32com\axscript\client\framework.py, find the error message you reported and print some details of the exception to try and

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-13 Thread Mark Hammond
On 13/02/2013 3:17 AM, Udo Weik wrote: Hello Mark, thanks for your answer. Debugging should work out of the box - what problems are you seeing? I'm using a Delphi-component. That component checks whether the ActiveX debug interface is available (Windows Scripting Host, WSH). When I start my

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-12 Thread Udo Weik
Hello Mark, thanks for your answer. Debugging should work out of the box - what problems are you seeing? I'm using a Delphi-component. That component checks whether the ActiveX debug interface is available (Windows Scripting Host, WSH). When I start my app, I get the following error message:

[python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-10 Thread Udo Weik
Hello, I want to use the standard Python 2.6 distribution from www.python.org as a Windows Scripting Host (WSH) scripting language. Is there any way to get debugging working with the WSH? Many thanks and greetings Udo ___ python-win32 mailing list

Re: [python-win32] Python 2.6: Windows Scripting Host (WSH) compatible debugger

2013-02-10 Thread Mark Hammond
Debugging should work out of the box - what problems are you seeing? Mark On 11/02/2013 3:07 AM, Udo Weik wrote: Hello, I want to use the standard Python 2.6 distribution from www.python.org as a Windows Scripting Host (WSH) scripting language. Is there any way to get debugging working with