Re: Module inspect Bug

2009-10-06 Thread Tomas Zulberti
On Oct 6, 1:36 am, "Gabriel Genellina" wrote: > En Mon, 05 Oct 2009 11:59:01 -0300, Tomas Zulberti   > escribió: > > > Hi. I have a class that extends collections.MutableMapping. I am > > checking if it is abstract, using the moduleinspect. But isabstract > > returns a number different from zero

Re: Module inspect Bug

2009-10-05 Thread Gabriel Genellina
En Mon, 05 Oct 2009 11:59:01 -0300, Tomas Zulberti escribió: Hi. I have a class that extends collections.MutableMapping. I am checking if it is abstract, using the module inspect. But isabstract returns a number different from zero insted of True or False. The problem with that is that someti

Module inspect Bug

2009-10-05 Thread Tomas Zulberti
Hi. I have a class that extends collections.MutableMapping. I am checking if it is abstract, using the module inspect. But isabstract returns a number different from zero insted of True or False. The problem with that is that sometimes it returns False when the class isn't an abstract. >>> inspect

Re: inspect bug

2008-10-09 Thread Terry Reedy
Aaron "Castironpi" Brady wrote: On Oct 9, 9:47 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: En Thu, 09 Oct 2008 00:24:20 -0300, Aaron "Castironpi" Brady <[EMAIL PROTECTED]> escribió: Found this bug. It's in 2.6, too bad. Posting here is not going to help much, it just will be lost. Wo

Re: inspect bug

2008-10-09 Thread Aaron "Castironpi" Brady
On Oct 9, 9:47 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Thu, 09 Oct 2008 00:24:20 -0300, Aaron "Castironpi" Brady   > <[EMAIL PROTECTED]> escribió: > > > Found this bug.  It's in 2.6, too bad. > > Posting here is not going to help much, it just will be lost. Would be   > better to fi

Re: inspect bug

2008-10-09 Thread Gabriel Genellina
En Thu, 09 Oct 2008 00:24:20 -0300, Aaron "Castironpi" Brady <[EMAIL PROTECTED]> escribió: Found this bug. It's in 2.6, too bad. Posting here is not going to help much, it just will be lost. Would be better to file a bug report at http://bugs.python.org/ -- Gabriel Genellina -- http://

inspect bug

2008-10-08 Thread Aaron "Castironpi" Brady
Hi all, Found this bug. It's in 2.6, too bad. Python 2.6 (r26:66721, Oct 2 2008, 11:35:03) [MSC v.1500 32 bit (Intel)] on win 32 Type "help", "copyright", "credits" or "license" for more information. >>> import inspect >>> type( inspect.getargvalues( inspect.currentframe() ) ) Docs say: insp