[issue21399] inspect and class methods

2014-05-02 Thread Stefan Krah
Stefan Krah added the comment: > By default AC emits "$type" for class methods, see dict_fromkeys in > Objects/dictobject.c. Thanks, good choice. -- ___ Python tracker ___

[issue21399] inspect and class methods

2014-05-01 Thread Larry Hastings
Larry Hastings added the comment: By default AC emits "$type" for class methods, see dict_fromkeys in Objects/dictobject.c. -- ___ Python tracker ___ ___

[issue21399] inspect and class methods

2014-05-01 Thread Yury Selivanov
Yury Selivanov added the comment: Yeah, I'm closing this issue. -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___

[issue21399] inspect and class methods

2014-05-01 Thread Stefan Krah
Stefan Krah added the comment: Okay, thanks. I've used "$cls" for Decimal.from_float in 40b06a75d1c6, and it appears to work already. Feel free to close the issue (I don't know whether AC emits "$cls" or if it should). -- ___ Python tracker

[issue21399] inspect and class methods

2014-04-30 Thread Yury Selivanov
Yury Selivanov added the comment: > In Python2.7, the cls parameter shows up in pydoc: > >frombuf(cls, buf) from __builtin__.type >Construct a TarInfo object from a 512 byte string buffer. > > > In 3.5, it doesn't: > >frombuf(buf, encoding, errors) from builtins.type >Cons

[issue21399] inspect and class methods

2014-04-30 Thread Stefan Krah
New submission from Stefan Krah: In Python2.7, the cls parameter shows up in pydoc: frombuf(cls, buf) from __builtin__.type Construct a TarInfo object from a 512 byte string buffer. In 3.5, it doesn't: frombuf(buf, encoding, errors) from builtins.type Construct a TarIn