Thank you!

________________________________________
From: Tkinter-discuss 
[tkinter-discuss-bounces+vasilis.vlachoudis=cern...@python.org] on behalf of 
Michael Lange [klappn...@web.de]
Sent: 31 May 2015 11:39
To: tkinter-discuss@python.org
Subject: Re: [Tkinter-discuss] (no subject)

Hi,

On Sun, 31 May 2015 09:21:20 +0000
Vasilis Vlachoudis <vasilis.vlachou...@cern.ch> wrote:

> Hi All,
>
> my question is not tkinter related but I could not find any help on that
> I am compiling a list of commands for faster access in my application.
> How can I check the type of a compiled object with isinstance()?
>
> >>> c = compile("x+y","","eval")
>
> >>> isinstance(c,code)
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
> NameError: name 'code' is not defined
>
> While type(c) gives a "code" object?
>
> >>> c
> <code object <module> at 0xb74a5cc8, file "", line 1>
>
> >>> type(c)
> <type 'code'>

Maybe you will have to use

    isinstance(c, types.CodeType)

instead.

Regards

Michael

.-.. .. ...- .   .-.. --- -. --.   .- -. -..   .--. .-. --- ... .--. . .-.

The sooner our happiness together begins, the longer it will last.
                -- Miramanee, "The Paradise Syndrome", stardate 4842.6
_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss@python.org
https://mail.python.org/mailman/listinfo/tkinter-discuss
_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss@python.org
https://mail.python.org/mailman/listinfo/tkinter-discuss

Reply via email to