A capability of some object-oriented programming languages to determine the type of an object at runtime.
Consider the following python code: def function(): "Docstring" name = ??? doc = ??? return name, doc >>> function() "function", "Docstring" What …
python introspectionI'm curious why Ruby's introspection related method to check if an object responds to a method is respond_to? instead …
ruby naming-conventions introspectionIs there a method that returns all the keys for an object conforming to the NSKeyValueCoding protocol? Something along the …
objective-c cocoa properties introspection key-value-observingHow do I introspect A's instance from within b.func() (i.e. A's instance's self): class A(): def go(self): …
python introspectionFor instance, in Python, I can do things like this if I want to get all attributes on an object: &…
ruby introspection irbIs it possible to retrieve the names of all procedures and functions that reside within a particular package? I understand …
oracle function plsql introspection procedureI am currently playing with introspection and annotations in Java 1.5. The have a parent abstract class AbstractClass. The inherited classes …
java introspection java-5In a subclass, I'm overriding a method that is not exposed in the super class. I know that I have …
objective-c introspectionOk I know you can use the dir() method to list everything in a module, but is there any way …
python introspectionI've got a live concurrent.futures.ThreadPoolExecutor. I want to check its status. I want to know how many threads …
python concurrency introspection concurrent.futures