[Python-ideas] Reprs of classes and functions

Alexander Heger python at 2sn.net
Wed Feb 25 12:02:07 CET 2015


In [2]: import collections

In [3]: collections.Counter.fromkeys
Out[3]: <bound method type.fromkeys of <class 'collections.Counter'>>

In [4]: f = collections.Counter.fromkeys

In [5]: f
Out[5]: <bound method type.fromkeys of <class 'collections.Counter'>>


More information about the Python-ideas mailing list