0
votes
1answer
40 views
Finding function arguments/parameters from outside the function’s package
So for instance: the generic plot function. Setting secondary ticks is much easier (IMHO) using a function outside of the base package, minor.tick(nx=n, ny=n, tick.ratio=n), found in Hmisc. Of course, …
6
votes
2answers
126 views
Where does pythons pydoc help function get its content from.
I have a lot of callable objects and they all have the __doc__ string correctly filled out, but running help on them produces the help for the their class instead of help based on __doc__.
What I …
1
vote
3answers
29 views
Automatically populate all properties of an Objective C instance with a dictionary
I have a class with properties that I would like to set values from a dictionary.
In other words, I would like to automate this:
objectInstace.val1 = [dict objectForKey:@"val1"];
objectInstace.val2 …
3
votes
3answers
244 views
Spy++ for PowerBuilder applications
Hi,
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 …
2
votes
3answers
97 views
Is there a straightforward way to find all the modules that are part of a python package?
Is there a straightforward way to find all the modules that are part of a python package? I've found this old discussion, which is not really conclusive, but I'd love to have a definite answer before …
1
vote
4answers
115 views
How to determine the Java byte code version of the current class programatically?
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 …
0
votes
1answer
105 views
using soaplib to connect to remote SOAP server lacking definition
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 …
3
votes
8answers
200 views
Is there a good way of setting C/C++ member variables from string representations? (introspection-lite)
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 …
1
vote
3answers
123 views
Object Reflection
Does anyone have any references for building a full Object/Class reflection system in C++ ?
Ive seen some crazy macro / template solutions however ive never found a system which solves everything to …
0
votes
1answer
72 views
Generating SWIG bindings with CMake
How would I generate automatic bindings for a C project that is built using CMake?
I want to generate bindings for Python, Java, .NET, PHP, Perl, TCL, Ruby and Octave automatically.
2
votes
4answers
153 views
How do I get the string representation of a variable in python?
I have a variable x in python. How can i find the string 'x' from the variable. Here is my attempt:
def var(v,c):
for key in c.keys():
if c[key] == v:
return key
def f():
x = '321'
…
0
votes
1answer
102 views
What is the issubclass equivalent of isinstance in python?
Given an object, how do I tell if it's a class, and a subclass of a given class Foo?
e.g.
class Bar(Foo):
pass
isinstance(Bar(), Foo) # => True
issubclass(Bar, Foo) # <--- how do I do …
5
votes
2answers
187 views
Python logging using a decorator
This is the first example we meet when we face with decorators. But I'm not able to realize what exactly I would like.
A simple decorator named LOG. It should work like this:
@LOG
def f(a, b=2, *c, …
0
votes
3answers
73 views
Ruby: Get list of different properties between objects
Helo,
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.
I have class …
0
votes
2answers
93 views
Introspect postgresql 8.3 to find foreign keys
I'm trying to introspect a postgres 8.3 database to retrieve details of its
foreign keys. Imagine I have the following schema:
CREATE TABLE "a" (
"id" SERIAL PRIMARY KEY
);
CREATE TABLE "b" (
…
