active questions tagged introspection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:22:56Z http://stackoverflow.com/feeds/tag/introspection http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1812702/finding-function-arguments-parameters-from-outside-the-functions-package 0 Finding function arguments/parameters from outside the function's package doug 2009-11-28T14:59:25Z 2009-11-29T03:51:21Z <p>So for instance: the generic plot function. Setting secondary ticks is much easier (IMHO) using a function <strong>outside</strong> of the base package, minor.tick(nx=n, ny=n, tick.ratio=n), found in Hmisc. Of course, that doesn't show up in plot's docstring. Likewise, the data-input arguments to 'plot' can be supplied by an object returned from the function 'hexbin', again, from a library outside of the base installation (where 'plot' resides). What would be great obviously is a programmatic way to gather these function arguments from the various libraries and put them in a single namespace.</p> <p><em>edit: (trying to re-state my example just above more clearly:) the arguments to plot supplied in the base package for, e.g., setting the axis tick frequency are xaxp/yaxp; however, one can also set a/t/f via a function outside of the base package, again, as in the minor.tick function from the Hmisc package--but you wouldn't know that just from looking at the plot method signature. Is there a meta function in R for this?</em></p> <p>So far, as i come across them, i've been manually gathering them in a TextMate 'snippet' (along with the attendant library imports). This isn't that difficult or time consuming, but i can only update my snippet as i find out about these additional arguments/parameters. Is there a canonical R way to do this, or at least an easier way?</p> <p>Just in case that wasn't clear, i am not talking about the case where multiple packages provide functions directed to the same statistic or view (e.g., 'boxplot' in the base package; 'boxplot.matrix' in gplots; and 'bplots' in Rlab). What i am talking is the case in which the function name is the same across two or more packages.</p> http://stackoverflow.com/questions/1787056/where-does-pythons-pydoc-help-function-get-its-content-from 6 Where does pythons pydoc help function get its content from. tolomea 2009-11-24T00:28:15Z 2009-11-24T11:30:41Z <p>I have a lot of callable objects and they all have the <code>__doc__</code> string correctly filled out, but running help on them produces the help for the their class instead of help based on <code>__doc__</code>.</p> <p>What I want to do is change it so that running help on them produces customized help that looks essentially like what you would get if they were actual functions instead of instances of a class that implements <code>__call__</code>.</p> <p>In code, what I'd like to do is make the output of this:</p> <pre><code>class myCallable: def __init__(self, doc): self.__doc__ = doc def __call__(self): # do some stuff pass myFunc = myCallable("some doco text") help(myFunc) </code></pre> <p>Look more like the output of this</p> <pre><code>def myFunc(): "some doco text" # do some stuff pass help(myFunc) </code></pre> http://stackoverflow.com/questions/1760689/automatically-populate-all-properties-of-an-objective-c-instance-with-a-dictionar 1 Automatically populate all properties of an Objective C instance with a dictionary Gerald Kaszuba 2009-11-19T03:26:42Z 2009-11-19T03:59:59Z <p>I have a class with properties that I would like to set values from a dictionary.</p> <p>In other words, I would like to automate this:</p> <pre><code>objectInstace.val1 = [dict objectForKey:@"val1"]; objectInstace.val2 = [dict objectForKey:@"val2"]; </code></pre> <p>with something like this (pseudo code):</p> <pre><code>for key, value in dict: setattr(objectInstance, key, value) </code></pre> http://stackoverflow.com/questions/1011536/spy-for-powerbuilder-applications 3 Spy++ for PowerBuilder applications Frerich Raabe 2009-06-18T08:45:27Z 2009-11-16T09:18:42Z <p>Hi,</p> <p>I'm trying to write a tool which lets me inspect the state of a PowerBuilder-based application. What I'm thinking of is something like Spy++ (or, even nicer, 'Snoop' as it exists for .NET applications) which lets me inspect the object tree (and properties of objects) of some PowerBuilder-based GUI.</p> <p>I did the same for ordinary (MFC-based) applications as well as .NET applications already, but unfortunately I never developed an application in PowerBuilder myself, so I'm generally thinking about two problems at this point:</p> <ol> <li><p>Is there some API (preferably in Java or C/C++) available which lets one traverse the tree of visual objects of a PowerBuilder application? I read up a bit on the PowerBuilder Native Interface system, but it seems that this is meant to write PowerBuilder extensions in C/C++ which can then be called from the PowerBuilder script language, right?</p></li> <li><p>If there is some API available - maybe PowerBuilder applications even expose some sort of IPC-enabled API which lets me inspect the state of a PowerBuilder object hierarchy without being within the process of the PowerBuilder application? Maybe there's an automation interface available, or something COM-based - or maybe something else?</p></li> </ol> <p>Right now, my impression is that probably need to inject a DLL into the process of the PowerBuilder application and then gain access to the running PowerBuilder VM so that I can query it for the object tree. Some sort of IPC mechanism will then let me transport this information out of the PowerBuilder application's process.</p> <p>Does anybody have some experience with this or can shed some light on whether anybody tried to do this already?</p> <p>Best regards,</p> <ul> <li>Frerich</li> </ul> http://stackoverflow.com/questions/1707709/is-there-a-straightforward-way-to-find-all-the-modules-that-are-part-of-a-python 2 Is there a straightforward way to find all the modules that are part of a python package? static_rtti 2009-11-10T12:47:30Z 2009-11-10T15:15:48Z <p>Is there a straightforward way to find all the modules that are part of a python package? I've found <a href="http://bytes.com/topic/python/answers/36924-how-get-list-modules-package" rel="nofollow">this old discussion</a>, which is not really conclusive, but I'd love to have a definite answer before I roll out my own solution based on os.listdir().</p> http://stackoverflow.com/questions/1707139/how-to-determine-the-java-byte-code-version-of-the-current-class-programatically 1 How to determine the Java byte code version of the current class programatically? Thorbjørn Ravn Andersen 2009-11-10T11:00:08Z 2009-11-10T11:55:20Z <p>I have a situation where the deployment platform is Java 5 and the development happens with Eclipse under Java 6 where we have established a procedure of having a new workspace created when beginning work on a given project. One of the required steps is therefore setting the compiler level to Java 5, which is frequently forgotten.</p> <p>We have a test machine running the deployment platform where we can run the code we build and do initial testing on our PC's, but if we forget to switch the compiler level the program cannot run. We have a build server for creating what goes to the customer, which works well, but this is for development where the build server is not needed and would add unnecessary waits.</p> <p>The question is: <em>CAN</em> I programmatically determine the byte code version of the current class, so my code can print out a warning already while testing on my local PC?</p> <p><hr></p> <p>EDIT: Please note the requirement was for the current class. Is this available through the classloadeer? Or must I locate the class file for the current class, and then investigate that?</p> http://stackoverflow.com/questions/1373738/using-soaplib-to-connect-to-remote-soap-server-lacking-definition 0 using soaplib to connect to remote SOAP server lacking definition mariotomo 2009-09-03T14:28:23Z 2009-11-07T04:00:04Z <p>I am looking at the soaplib python module (it comes with standard ubuntu 9.04). I have used xmlrpclib extensively in the last years but now I am curious about soap. writing servers with soaplib is acceptably easy, I assume writing clients should be even easier.</p> <p>in my impatience I can't find a way to make use of introspection. do I really need to describe each and every method in the server in order to define the client ( <a href="http://trac.optio.webfactional.com/wiki/Client" rel="nofollow">http://trac.optio.webfactional.com/wiki/Client</a> )? </p> <p>I find this difficult to believe, but I can't find any significant web page holding my three search terms: python soap introspect...</p> <p>so the question sounds: can I use Python soaplib to access just any remote web service of which I only know the URL? and how do I do that?</p> <p>am I or is the library missing something? </p> http://stackoverflow.com/questions/1687888/is-there-a-good-way-of-setting-c-c-member-variables-from-string-representations 3 Is there a good way of setting C/C++ member variables from string representations? (introspection-lite) the_mandrill 2009-11-06T14:16:46Z 2009-11-06T17:14:49Z <p>I've got a struct with some members that I want to be able to get and set from a string. Given that C++ doesn't have any introspection I figure I need some creative solution with macros, the stringize operator and maybe <code>boost::bind.</code> I don't need full serialization or introspection, more an 'introspection-lite'</p> <p>I'd like to have something along the lines of this:</p> <pre><code>struct MyType { int fieldA; int fieldB; }; DECLARE_STRING_MAP(MyType,fieldA); DECLARE_STRING_MAP(MyType,fieldB); MyType t; SET_VALUE_FROM_STRING(MyType,t,"fieldA","3") </code></pre> <p>Rather than have a huge <code>if</code> statement.</p> <p>Any idea if there's a neat solution to this?</p> <p>Related question: <a href="http://stackoverflow.com/questions/1540114/object-reflection">http://stackoverflow.com/questions/1540114/object-reflection</a></p> <p>EDIT: Thanks to maxim1000 for the 'map to int Type::*' trick -- this worked for me: </p> <pre><code>#define DEFINE_LOOKUP_MAP(Type) std::map&lt;AnsiString,int Type::*&gt; mapper #define ADD_FIELD_MAPPING(Type, Field) mapper[#Field]=&amp;Type::Field #define SET_FIELD_FROM_MAP(Type, Field, var, value) var.*(mapper[#Field])=value DEFINE_LOOKUP_MAP(MyType); ADD_FIELD_MAPPING(MyType, fieldA); ADD_FIELD_MAPPING(MyType, fieldB); SET_FIELD_FROM_MAP(MyType, fieldA, obj, 3); </code></pre> http://stackoverflow.com/questions/1540114/object-reflection 1 Object Reflection Slazanger 2009-10-08T20:08:04Z 2009-11-06T15:25:15Z <p>Does anyone have any references for building a full Object/Class reflection system in C++ ? </p> <p>Ive seen some crazy macro / template solutions however ive never found a system which solves everything to a level im comfortable with.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1498969/generating-swig-bindings-with-cmake 0 Generating SWIG bindings with CMake joemoe 2009-09-30T15:44:42Z 2009-11-03T21:20:04Z <p>How would I generate automatic bindings for a C project that is built using CMake?</p> <p>I want to generate bindings for Python, Java, .NET, PHP, Perl, TCL, Ruby and Octave automatically.</p> http://stackoverflow.com/questions/1665833/how-do-i-get-the-string-representation-of-a-variable-in-python 2 How do I get the string representation of a variable in python? Johan 2009-11-03T07:49:04Z 2009-11-03T16:20:21Z <p>I have a variable x in python. How can i find the string 'x' from the variable. Here is my attempt:</p> <pre><code>def var(v,c): for key in c.keys(): if c[key] == v: return key def f(): x = '321' print 'Local var %s = %s'%(var(x,locals()),x) x = '123' print 'Global var %s = %s'%(var(x,locals()),x) f() </code></pre> <p>The results are:</p> <pre><code>Global var x = 123 Local var x = 321 </code></pre> <p>The above recipe seems a bit un-pythonesque. Is there a better/shorter way to achieve the same result? </p> http://stackoverflow.com/questions/1666079/what-is-the-issubclass-equivalent-of-isinstance-in-python 0 What is the issubclass equivalent of isinstance in python? Martin DeMello 2009-11-03T08:57:40Z 2009-11-03T09:37:11Z <p>Given an object, how do I tell if it's a class, and a subclass of a given class Foo?</p> <p>e.g.</p> <pre><code>class Bar(Foo): pass isinstance(Bar(), Foo) # =&gt; True issubclass(Bar, Foo) # &lt;--- how do I do that? </code></pre> http://stackoverflow.com/questions/1648707/python-logging-using-a-decorator 4 Python logging using a decorator Luca 2009-10-30T09:02:59Z 2009-10-30T11:33:34Z <p>This is the first example we meet when we face with decorators. But I'm not able to realize what exactly I would like.</p> <p>A simple decorator named LOG. It should work like this:</p> <pre><code>@LOG def f(a, b=2, *c, **d): pass </code></pre> <p>And the result should be something like:</p> <pre><code>f(1, pippo=4, paperino='luca') ===== Enter f ===== a = 1 b = 2 pippo = 4 paperino = luca ===== Exit f ===== </code></pre> <p>Where every argument passed as a parameter to the function is showed with its value.</p> <p>I discovered that the problem is harder than I thought, mainly because of the many different ways you can pass arguments to a function (think about tuples with *c or dictionaries with **d).</p> <p>I tried a solution but I'm not sure it's correct. It' somethink like this:</p> <pre><code>def LOG(fn): import inspect varList, _, _, default = inspect.getargspec(fn) d = {} if default is not None: d = dict((varList[-len(default):][i], v) for i, v in enumerate(default)) def f(*argt, **argd): print ('Enter %s' % fn).center(100, '=') d.update(dict((varList[i], v) for i, v in enumerate(argt))) d.update(argd) for c in d.iteritems(): print '%s = %s' % c ret = fn(*argt, **argd) print 'return: %s' % ret print ('Exit %s' % fn).center(100, '=') return ret return f </code></pre> <p>I think it's not so easy as I expected, but it's strange I didn't found what I wanted on Google.</p> <p>Can you tell me if my solution is ok? Or can you suggest a better solution to the problem I proposed?</p> <p>Thank you to everybody.</p> http://stackoverflow.com/questions/1648473/ruby-get-list-of-different-properties-between-objects 0 Ruby: Get list of different properties between objects saurabhj 2009-10-30T07:29:23Z 2009-10-30T09:59:52Z <p>Helo,</p> <p>I am pretty new to Ruby (using 1.8.6) and need to know whether the following functionality is available automatically and if not, which would be the best method to implement it.</p> <p>I have class Car. And have two objects: </p> <pre><code>car_a and car_b </code></pre> <p>Is there any way I could do a compare and find what properties differ in one of the objects as compared to the other one?</p> <p>For example,</p> <pre><code>car_a.color = 'Red' car_a.sun_roof = true car_a.wheels = 'Bridgestone' car_b.color = 'Blue' car_b.sun_roof = false car_b.wheels = 'Bridgestone' </code></pre> <p>then doing a</p> <pre><code>car_a.compare_with(car_b) </code></pre> <p>should give me:</p> <pre><code>{:color =&gt; 'Blue', :sun_roof =&gt; 'false'} </code></pre> <p>or something to that effect?</p> http://stackoverflow.com/questions/1567051/introspect-postgresql-8-3-to-find-foreign-keys 0 Introspect postgresql 8.3 to find foreign keys Ben Armston 2009-10-14T15:23:18Z 2009-10-17T20:34:30Z <p>I'm trying to introspect a postgres 8.3 database to retrieve details of its foreign keys. Imagine I have the following schema:</p> <pre><code>CREATE TABLE "a" ( "id" SERIAL PRIMARY KEY ); CREATE TABLE "b" ( "one" integer, "two" integer, "a_id" integer REFERENCES "a", PRIMARY KEY ("one", "two") ); CREATE TABLE "c" ( "id" SERIAL PRIMARY KEY, "a_id" integer REFERENCES "a", "b_one" integer, "b_two" integer, FOREIGN KEY ("b_one", "b_two") REFERENCES "b" ); </code></pre> <p>Then I'd like to run a query which producued the following:</p> <pre><code>table | columns | foreign table | foreign columns -------------------------------------------------------- b | {a_id} | a | {id} c | {a_id} | a | {id} c | {b_one, b_two} | b | {one, two} </code></pre> <p>My first efforts have given me the query</p> <pre><code>SELECT conrelid::regclass as "table", conkey as columns, confrelid::regclass as "foreign table", confkey as "foreign columns" FROM pg_constraint WHERE contype = 'f' ; table | columns | foreign table | foreign columns -------+---------+---------------+----------------- b | {3} | a | {1} c | {2} | a | {1} c | {3,4} | b | {1,2} </code></pre> <p>which is almost there. But my efforts to convert the column numbers to column names have not yet provided me with the desired outcome. Googling has given me the below which is again, not quite right.</p> <pre><code>SELECT conrelid::regclass as "table", a.attname as columns, confrelid::regclass as "foreign table", af.attname as "foreign columns" FROM pg_attribute AS af, pg_attribute AS a, ( SELECT conrelid, confrelid, conkey[i] AS conkey, confkey[i] as confkey FROM ( SELECT conrelid, confrelid, conkey, confkey, generate_series(1, array_upper(conkey, 1)) AS i FROM pg_constraint WHERE contype = 'f' ) AS ss ) AS ss2 WHERE af.attnum = confkey AND af.attrelid = confrelid AND a.attnum = conkey AND a.attrelid = conrelid ; table | columns | foreign table | foreign columns -------+---------+---------------+----------------- b | a_id | a | id c | a_id | a | id c | b_one | b | one c | b_two | b | two </code></pre> <p>Can anyone help me take that final step?</p> http://stackoverflow.com/questions/1525849/runtime-object-inspector-for-iphone 0 Runtime Object Inspector for iPhone? Brad Parks 2009-10-06T14:15:29Z 2009-10-09T16:47:25Z <p>I'd like to be able to add a runtime object inspector to my iPhone app, mostly for debugging purposes. </p> <p>This would let me do something like:</p> <pre><code>[inspector addObject:someObject]; </code></pre> <p>and in my app, a view would appear that would let me browse and change the public properties of the object in question. </p> <p>Possibly it would work with a subset of the properties of the object in question, or maybe even only a single property.</p> <p>I know that Objective C exposes the ability to do this via it's runtime api:</p> <p><a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Introduction/Introduction.html#//apple%5Fref/doc/uid/TP40008048-CH1-SW1" rel="nofollow">http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008048-CH1-SW1</a></p> <p><a href="http://code.google.com/p/runtimebrowser/" rel="nofollow">http://code.google.com/p/runtimebrowser/</a></p> <p><a href="http://stackoverflow.com/questions/1282563/obtain-list-of-class-methods-for-an-arbitrary-class">http://stackoverflow.com/questions/1282563/obtain-list-of-class-methods-for-an-arbitrary-class</a></p> <p>What I'm looking to do is not rewrite the wheel, I guess. Is it out there anywhere? </p> <p>Note: I know I can use XCode's debugging tools to do inspection of objects, but this would be for runtime modification of properties by testers, and if the interface was nice enough, for end users. </p> http://stackoverflow.com/questions/1538342/how-can-i-get-the-name-of-an-object-in-python 0 How can I get the name of an object in Python? Nathan Fellman 2009-10-08T14:54:21Z 2009-10-08T18:03:44Z <p>Is there any way to get the name of an object in Python? For instance:</p> <pre><code>my_list = [x, y, z] # x, y, z have been previously defined for bla in my_list: print "handling object ", name(bla) # &lt;--- what would go instead of `name`? # do something to bla </code></pre> <p><strong>Edit:</strong> Some context:</p> <p>What I'm actually doing is creating a list of functions that I can specify by the command line.</p> <p>I have:</p> <pre><code>def fun1: pass def fun2 pass def fun3: pass fun_dict = {'fun1': fun1, 'fun2': fun2, 'fun3': fun3} </code></pre> <p>I get the name of the function from the commandline and I want to call the relevant function:</p> <pre><code>func_name = parse_commandline() fun_dict[func_name]() </code></pre> <p>And the reason I want to have the name of the function is because I want to create <code>fun_dict</code> without writing the names of the functions twice, since that seems like a good way to create bugs. What I want to do is:</p> <pre><code>fun_list = [fun1, fun2, fun3] # and I'll add more as the need arises fun_dict = {} [fun_dict[name(t) = t for t in fun_list] # &lt;-- this is where I need the name function </code></pre> <p>This way I only need to write the function names once.</p> http://stackoverflow.com/questions/1073078/fxcop-introspection-engine 0 FxCop introspection engine mblaze 2009-07-02T08:01:15Z 2009-10-03T05:00:02Z <p>I am receiving an exception when I try to use the introspection engine:</p> <p>Could not load file or assembly 'Microsoft.Cci, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. An attempt was made to load a program with an incorrect format.</p> <p>Anyone got this exception?</p> http://stackoverflow.com/questions/1497683/can-python-determine-the-class-of-a-object-accessing-a-method 0 Can Python determine the class of a object accessing a method blakef 2009-09-30T11:58:36Z 2009-09-30T15:52:53Z <p>Is there anyway to do something like this:</p> <pre><code>class A: def foo(self): if isinstance(caller, B): print "B can't call methods in A" else: print "Foobar" class B: def foo(self, ref): ref.foo() class C: def foo(self, ref): ref.foo() a = A(); B().foo(a) # Outputs "B can't call methods in A" C().foo(a) # Outputs "Foobar" </code></pre> <p>Where <em>caller</em> in <code>A</code> uses some form of introspection to determine the class of the calling method's object?</p> <p>In the end, I put this together based on some of the suggestions (not sure if it's appropriate or good etiquette to add this):</p> <pre><code>import inspect ... def check_caller(self, klass): frame = inspect.currentframe() current = lambda : frame.f_locals.get('self') while not current() is None: if isinstance(current(), klass): return True frame = frame.f_back return False </code></pre> <p>It's not perfect for all the reasons supplied, but thanks for the responses: they were a big help.</p> http://stackoverflow.com/questions/1487952/python-object-inspector 0 Python object inspector ? Homer J. Simpson 2009-09-28T16:17:53Z 2009-09-29T02:23:25Z <p>Hi,</p> <p>besides from using a completely integrated IDE with debugger for python (like with Eclipse), is there any little tool for achieving this:</p> <ul> <li>when running a program, i want to be able to hook somewhere into it (similar to inserting a print statement) and call a window with an object inspector (a tree view) </li> <li>after closing the window, the program should resume</li> </ul> <p>It doesnt need to be polished, not even absolutely stable, it could be introspection example code for some widget library like wx. Platform independent would be nice though (not a PyObjC program, or something like that on Windows).</p> <p>Any Ideas ? </p> <p><em>Edit</em>: Yes, i know about pdb, but I'm looking for a graphical tree of all the current objects. </p> <p>Nevertheless, here is a nice introduction on how to use pdb (in this case in Django): <a href="http://ericholscher.com/blog/2008/aug/31/using-pdb-python-debugger-django-debugging-series-/" rel="nofollow">pdb + Django</a></p> http://stackoverflow.com/questions/1448670/ruby-stringtoclass 1 Ruby String#to_class khelll 2009-09-19T14:36:32Z 2009-09-20T08:59:16Z <p>Taken from a <a href="http://stackoverflow.com/questions/1448293/cast-between-string-and-classname">previous</a> post with some modifications to respond to <a href="http://stackoverflow.com/users/149392/sepp2k">sepp2k</a>'s comment about namespaces, I have implemented String#to_class method. I'm sharing the code here and I do believe that it could be refactored someway specially the "i" counter. Your comments are appreciated.</p> <pre><code> class String def to_class chain = self.split "::" i=0 res = chain.inject(Module) do |ans,obj| break if ans.nil? i+=1 klass = ans.const_get(obj) # Make sure the current obj is a valid class # Or it's a module but not the last element, # as the last element should be a class klass.is_a?(Class) || (klass.is_a?(Module) and i != chain.length) ? klass : nil end rescue NameError nil end end #Tests that should be passed. assert_equal(Fixnum,"Fixnum".to_class) assert_equal(M::C,"M::C".to_class) assert_nil "Math".to_class assert_nil "Math::PI".to_class assert_nil "Something".to_class </code></pre> http://stackoverflow.com/questions/928990/looping-over-a-python-ironpython-object-methods 1 Looping over a Python / IronPython Object Methods B. Tyndall 2009-05-30T04:24:46Z 2009-09-19T02:17:33Z <p>What is the proper way to loop over a Python object's methods and call them?</p> <p>Given the object:</p> <pre><code>class SomeTest(): def something1(self): print "something 1" def something2(self): print "something 2" </code></pre> http://stackoverflow.com/questions/1429088/constructing-dynamic-properties-at-runtime-in-vb-net 0 Constructing Dynamic Properties at Runtime in VB .NET Larry Watanabe 2009-09-15T19:10:35Z 2009-09-16T15:50:08Z <p>Is there a way to dynamically create properties at runtime in VB .NET using introspection?</p> <p>e.g. Suppose I had a class</p> <pre><code>Public Class Foo Public Property Bar() As String get ... end get set(ByVal value As String) ... end set End Class </code></pre> <p>Is there a way to create property Bar at runtime?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1433372/how-do-i-query-tcl-about-its-version 1 How do I query Tcl about its version? WilliamKF 2009-09-16T14:35:33Z 2009-09-16T15:14:08Z <p>There must be an easy way to do this, but I can't find it.</p> <p>What command can I run within Tcl to get it to introspect and report the version of itself that is running?</p> http://stackoverflow.com/questions/1401661/python-list-all-base-classes-in-a-hierarchy 2 Python: List all base classes in a hierarchy Sridhar Ratnakumar 2009-09-09T19:41:52Z 2009-09-09T20:39:19Z <p>Given a class <code>Foo</code> (whether it is a <a href="http://docs.python.org/reference/datamodel.html#new-style-and-classic-classes" rel="nofollow">new-style</a> class or not), how do you generate <strong>all</strong> the base classes - anywhere in the inheritance hierarchy - it <a href="http://docs.python.org/library/functions.html?highlight=issubclass#issubclass" rel="nofollow"><code>issubclass</code></a> of?</p> http://stackoverflow.com/questions/1375141/there-a-way-to-determine-at-runtime-if-an-object-can-do-a-method-in-c 2 There a way to determine at runtime if an object can do a method in C++ Jake 2009-09-03T18:29:55Z 2009-09-09T19:52:55Z <p>In Perl, there is a UNIVERSAL::can method you can call on any class or object to determine if its able to do something:</p> <pre><code>sub FooBar::foo {} print "Yup!\n" if FooBar-&gt;can('foo'); #prints "Yup!" </code></pre> <p>Say I have a base class pointer in C++ that can be any of a number of different derived classes, is there an easy way to accomplish something similar to this? I dont want to have to touch anything in the other derived classes, I can only change the area in the base class that calls the function, and the one derived class that supports it.</p> <p>EDIT: Wait, this is obvious now (nevermind the question), I could just implement it in the base that returns a number representing UNIMPLEMENTED, then check that the return is not this when You call it. Im not sure why i was thinking of things in such a complicated manner.</p> <p>I was also thinking i would derive my class from another one that implemented foo then see if a dynamic cast to this class worked or not.</p> http://stackoverflow.com/questions/1280787/how-can-i-list-the-methods-in-a-python-2-5-module 3 How can I list the methods in a Python 2.5 module? Evan Kroske 2009-08-15T00:13:02Z 2009-08-15T00:44:24Z <p>I'm trying to use a Python library written in C that has no documentation of any kind. I want to use introspection to at least see what methods and classes are in the modules. Does somebody have a function or library I can use to list the functions (with argument lists) and classes (with methods and member variables) within a module? </p> <p>I found <a href="http://diveintopython.org/power_of_introspection/index.html" rel="nofollow">this article</a> about Python introspection, but I'm pretty sure it doesn't apply to Python 2.5. Thanks for the help.</p> http://stackoverflow.com/questions/1269859/classname-and-iskindofclass-messages-sent-to-an-object 2 className and isKindOfClass messages sent to an object neo 2009-08-13T03:23:21Z 2009-08-13T03:44:15Z <p>Hi, I have following piece of code</p> <pre><code>NSMutableArray *mutArray = [[NSMutableArray alloc] init]; [mutArray addObject: [NSProcessInfo processInfo]]; [mutArray addObject: @"This is NSString Object"]; [mutArray addObject: [[NSMutableString alloc] initWithString: @"1st Mutable String"]]; for (id element in mutArray){ NSLog(@" "); NSLog(@"Class Name: %@", [element className]); NSLog(@"Is Member of NSString: %@", ([element class] isMemberOfClass: [NSString class]) ? YES: NO); NSLog(@"Is kind of NSString: %@", ([element class] isKindOfClass: [NSString class]) ? YES: NO); } </code></pre> <p>I am getting following output (and expecting as pointed)</p> <pre><code>Class Name: NSProcessInfo Is Member of NSString: NO Is Kind of NSString: NO Class Name: NSCFString &lt;-- Expecting NSString Is Member of NSString: NO &lt;-- Expecting YES Is Kind of NSString: NO &lt;-- Expecting YES Class Name: NSCFString &lt;-- Expecting NSMutableString Is Member of NSString: NO Is Kind of NSString: NO &lt;-- Expecting YES </code></pre> <p>Am I missing something terrible simple here? Thanks!</p> http://stackoverflow.com/questions/1234672/introspecting-a-given-functions-nested-local-functions-in-python 2 Introspecting a given function's nested (local) functions in Python Will McCutchen 2009-08-05T17:36:15Z 2009-08-05T21:15:39Z <p>Given the function</p> <pre><code>def f(): x, y = 1, 2 def get(): print 'get' def post(): print 'post' </code></pre> <p>is there a way for me to access its local get() and post() functions in a way that I can call them? I'm looking for a function that will work like so with the function f() defined above:</p> <pre><code>&gt;&gt;&gt; get, post = get_local_functions(f) &gt;&gt;&gt; get() 'get' </code></pre> <p>I can access the code objects for those local functions like so</p> <pre><code>import inspect for c in f.func_code.co_consts: if inspect.iscode(c): print c.co_name, c </code></pre> <p>which results in</p> <pre><code>get &lt;code object get at 0x26e78 ...&gt; post &lt;code object post at 0x269f8 ...&gt; </code></pre> <p>but I can't figure out how to get the actual callable function objects. Is that even possible?</p> <p>Thanks for your help,</p> <p>Will.</p> http://stackoverflow.com/questions/1231288/get-pointer-to-class-of-instance-variable-in-objective-c 1 Get pointer to class of instance variable in Objective-C Mark Lorenz 2009-08-05T05:04:12Z 2009-08-05T14:58:20Z <p>I have an object that has several properties. If I have a pointer to one of those properties, is it possible to get a pointer to the class instance to which that ivar belongs?</p> <p>for example: foo.bar, where I know the address of bar, can the address of foo be found?</p> <p>This seems related to: <a href="http://developer.apple.com/documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html#//apple%5Fref/c/func/ivar%5FgetOffset" rel="nofollow">run time references</a> but I didn't see any references that were quite what I'm looking for.</p> <p>Thanks for your help!</p>