flam...@gmail.com wrote: > Hello, > I am wondering if it's possible to get the return value of a method > *without* calling it using introspection?
Nope. All that's possible to see if there is a implicit or explicit return through dis.disassemble - if you find "LOAD_CONST None" before any return-statement, you know that you don't anything else. Diez -- http://mail.python.org/mailman/listinfo/python-list