[issue12920] inspect.getsource fails to get source of local classes

2013-03-23 Thread Richard Eames
Changes by Richard Eames : -- nosy: +Naddiseo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue12920] inspect.getsource fails to get source of local classes

2011-09-09 Thread Popa Claudiu
Popa Claudiu added the comment: I forgot to mention that I executed this code directly in IDLE. It seems to work perfectly on command line though. -- ___ Python tracker ___ ___

[issue12920] inspect.getsource fails to get source of local classes

2011-09-09 Thread Popa Claudiu
Popa Claudiu added the comment: Yes. On Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on win32, the result for the following lines: import inspect class A: pass inspect.getsource(A) is: Traceback (most recent call last): File "E:/Scripts/Snippets/test_inspec

[issue12920] inspect.getsource fails to get source of local classes

2011-09-09 Thread Éric Araujo
Éric Araujo added the comment: > inspect.getsource called with a class defined in the same file fails > with TypeError: is a built-in class The error message makes me think that getsource(__main__) was used, not getsource(SomeClass). Can you check again? -- nosy: +eric.araujo title:

[issue12920] Inspect.getsource fails to get source of local classes

2011-09-06 Thread Popa Claudiu
New submission from Popa Claudiu : inspect.getsource called with a class defined in the same file fails with TypeError: is a built-in class, although the documentation says that: "The argument may be a module, class, method, function, traceback, frame, or code object. The source code is retur