Hi, ALL, C:\Documents and Settings\Igor.FORDANWORK\Desktop\winpdb>python Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> from a.b import c >>> print c.classA <class 'a.b.c.classA'> >>> inspect.getmembers(c.classA) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'inspect' is not defined >>> import lib Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named lib >>>
In the https://docs.python.org/2/library/inspect.html, it says it is located in Lib/inspect.py. What am I missing? Or its only for 3.x? Thank you. -- https://mail.python.org/mailman/listinfo/python-list