Re: [python-win32] Possible bug: what information to provide

2005-10-27 Thread Mark Hammond
> Python interface only invokes method without attributes, when > called without > brackets: > > i.e: "ref.Update()" does not work, while "ref.Update" does invoke correct > _method_ > > The code is not using Makepy, The problem is that the object is being asked to invoke a *property* named Foo, b

Re: [python-win32] Possible bug: what information to provide

2005-10-27 Thread Alex Jouravlev
PM > To: Alex Jouravlev; python-win32@python.org > Subject: RE: [python-win32] Possible bug: what information to provide > > > > > > One more strange thing: > > > > MakePy recognised the object as "IRepository" rather then > "Repository"

Re: [python-win32] Possible bug: what information to provide

2005-10-16 Thread Alex Jouravlev
d [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 13, 2005 2:01 PM > To: Alex Jouravlev; python-win32@python.org > Subject: RE: [python-win32] Possible bug: what information to provide > > > > > > One more strange thing: > > > > MakePy recognised the object a

Re: [python-win32] Possible bug: what information to provide

2005-10-12 Thread Mark Hammond
> > > One more strange thing: > > > MakePy recognised the object as "IRepository" rather then "Repository" > > > > I'm not sure what you mean here. Please post a complete code sample, > > including all output that confuses you or you believe to be wrong. > > > Makepy.py output (fragment, for infor

Re: [python-win32] Possible bug: what information to provide

2005-10-12 Thread Alex Jouravlev
Thanks, Mark, > > One more strange thing: > > MakePy recognised the object as "IRepository" rather then "Repository" > > I'm not sure what you mean here. Please post a complete code sample, > including all output that confuses you or you believe to be wrong. > Makepy.py output (fragment, for info

Re: [python-win32] Possible bug: what information to provide

2005-10-12 Thread Mark Hammond
> >>> r.ref > > >>> r.ref.GetLastError() > Traceback (most recent call last): > File "", line 1, in ? > TypeError: 'unicode' object is not callable > >>> r.ref.GetLastError > u'' > >>> Can you provide a short example that also includes how the object is created? > However, GetLastError() is a

Re: [python-win32] Possible bug: what information to provide

2005-10-12 Thread Alex Jouravlev
Sorry, I initially provided wrong fragment More bug details: >>> r.ref >>> r.ref.GetLastError() Traceback (most recent call last): File "", line 1, in ? TypeError: 'unicode' object is not callable >>> r.ref.GetLastError u'' >>> However, GetLastError() is a function according to specs and Make

Re: [python-win32] Possible bug: what information to provide

2005-10-12 Thread bob
At 05:21 AM 10/12/2005, Alex Jouravlev wrote: >Hi, > >I have a potential bug report. PythonWin fails to invoke a COM Object's >function. I am a bit puzzled what information should be provided. I am not a >COM guru > > - I am using PythonWin to write some scripts to an off-the-shelf COM >enabled sy

[python-win32] Possible bug: what information to provide

2005-10-12 Thread Alex Jouravlev
Hi, I have a potential bug report. PythonWin fails to invoke a COM Object's function. I am a bit puzzled what information should be provided. I am not a COM guru - I am using PythonWin to write some scripts to an off-the-shelf COM enabled system - the system is outside of my control, I cannot g