> Thanks a lot peter, that worked as i needed. Where can i find some
> good documentation which explains such behavior.
The reason for this behavior is the way python stores attributes.
Both a class and an instance of a class have a __dict__ attribute
which is a dictionary which stores attributes
On Jul 31, 11:22 pm, "Roger Upole" <[EMAIL PROTECTED]> wrote:
> "sterling" <[EMAIL PROTECTED]> wrote in message
>
> news:[EMAIL PROTECTED]
>
>
>
>
>
> > I'm curious as to why the difference between IDLE and pythonWin when
> &
On Jul 31, 4:28 am, Tim Golden <[EMAIL PROTECTED]> wrote:
> sterling wrote:
> > I'm curious as to why the difference between IDLE and pythonWin when
> > using win32com.
> > opening an excel file, i've attempted to grab the chart information
> &
I'm curious as to why the difference between IDLE and pythonWin when
using win32com.
opening an excel file, i've attempted to grab the chart information
out of the file.
commands like co = ChartObjects(1) works in pythonWin but doesn't
work in IDLE.
however, on both co = chartobjects(1) works ju