Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
9answers
2k views

Ruby equivalent of Python's “dir”?

In Python we can "dir" a module, like this: >>> import re >>> dir(re) And it lists all functions in the module. Is there a similar way to do this in Ruby?
4
votes
4answers
849 views

Inspect the names/values of arguments in the definition/execution of a JavaScript function

I'm looking to do the equivalent of Python's inspect.getargspec() in Javascript. I do know that you can get the arguments list from a Javascript function, but what I'm really looking for is the names ...
3
votes
4answers
90 views

How to inspect a method using reflection

public void foo(){ throw new Exception("foo"); } public void bar(){ foo(); } Is it possible to inspect the method bar() in order to know that foo() is called without a try catch inside ...
3
votes
2answers
143 views

Is it possible to recover the name of the function from within the function in scala?

I'd like to do something like def getMeASammy() {println "getMeASammy"} def getMeADrink() {println "getMeADrink"} def getMeASub() {println "getMeASub"} But, I don't want to explicitly type out the ...
2
votes
2answers
113 views

How to get arguments list of a built-in Python class constructor?

I'm trying to use the inspect module, however it seems I can't use it on a built-in (native?) class, or else I misunderstood. I'm using Python 2.7 and tried with Python 3.2. This is working: ...
2
votes
3answers
95 views

Python introspection: Automatic wrapping of methods

object of type A and Is there a way to programatically wrap a class object? Given class A(object): def __init__(self): ## .. def f0(self, a): ## ... def f1(self, a, b): ...
2
votes
0answers
59 views

CDI: How to debug / inspect?

Since I'm new to CDI, I encounter strange behaviors now and then which I can't explain (cyclic injection until OOMError, Interceptor not invoked on some beans, etc). Is there a (simple) way to print ...
2
votes
3answers
139 views

Lisp: Inspect function determine its required parameters

In Python, I can do this: >>> def foo(x,y,z=1): return x+y*z >>> foo.func_code.co_varnames ('x', 'y', 'z') >>> foo.func_defaults (1,) And from it, know how many ...
2
votes
3answers
185 views

Can't get argspec for Python callables?

I'm playing with Python callable. Basically you can define a python class and implement __call__ method to make the instance of this class callable. e.g., class AwesomeFunction(object): def ...
2
votes
3answers
640 views

.NET Runtime Object Browser

Is there a framework which can be used in your application, to make it expose internal objects on some port for inspection. for.e.g. after i start my application in this case a GUI Application, and ...
1
vote
3answers
379 views

How to inspect mystery deserialized object in Python

I'm trying to load JSON back into an object. The "loads" method seems to work without error, but the object doesn't seem to have the properties I expect. How can I go about examining/inspecting the ...
1
vote
4answers
218 views

Decorator changing function status from method to function

[Updated]: Answer inline below question I have an inspecting program and one objective is for logic in a decorator to know whether the function it is decorating is a class method or regular function. ...
1
vote
3answers
562 views

Python Inspect - Lookup the data type for a property in a GAE db.model Class

class Employee(db.Model): firstname = db.StringProperty() lastname = db.StringProperty() address1 = db.StringProperty() timezone = ...
1
vote
2answers
2k views

as3 object serialization (to as3 code)

what i'm trying to do is walk an object that is also a complex tree of objects and output the actionscript 3 code it took (or takes) to create instantiate and populate that object and all its ...
1
vote
3answers
825 views

Do you require deep packet inspection on a server-only firewall?

I have a server behind a firewall. It runs a web application (Java servlets under Apache Tomcat) and responds only to port 443 (HTTPS). There is no scripting code in the pages served - the forms use ...
0
votes
2answers
34 views

Django: inspect queryset to get applied filters

Is there a way to inspect a queryset and get info about which filters/exclude have been applied? I need it for debugging: I cannot understand why my queryset excludes some data...
0
votes
1answer
39 views

XML inspection ignores declared elements

I have run into an issue with a custom XML DOCTYPE, where none of the elements seem to get registered by PHPStorm. Thus, all I get is a ton of red. I have used the "ALT-ENTER -> Fetch DTD" method as ...
0
votes
0answers
26 views

Analyzing Flex Spark layout at runtime

When running into layout issues in Flex, I always find the need to see where one Group or component ends and another begins. The most simple solution would be to put a background color; which kinda ...
0
votes
3answers
59 views

firebug:object inspection

In firebug it is so easy and very handy to inspect an object. However, I don't have any clue about the color code used there. Some properties are in red, some others in green, some in black, some ...
0
votes
2answers
55 views

How can I inspect the data sent from the Pandora web player?

Out of curiousity I'd like to be able to inspect the data sent by Pandora's web client to the Pandora servers, I am particularly interested in how it communicates user actions like 'skip this song', ...
0
votes
1answer
38 views

Access Audit Inspection + History block!

Objective: - electronic form which displays 45 inspection points (rarely changes) - 3 additional columns - Rating (0, 1, 2) - CorrectiveAction (Immediate, SOP, WO) - Notes - Maintain inspection ...
0
votes
1answer
62 views

Is there a way to inspect the (differing) internal structures of Python objects that test as equal (==)?

Yesterday I asked ("A case of outwardly equal lists of sets behaving differently under Python 2.5 (I think …)") why list W constructed as follows: r_dim_1_based = range( 1, dim + 1) set_dim_1_based = ...
0
votes
3answers
121 views

How can I get the name of a python class?

When I have an object foo, I can get it's class object via str(foo.__class__) What I would need however is only the name of the class ("Foo" for example), the above would give me something along ...
0
votes
2answers
167 views

How can I set the application information on a session using the Oracle thin JDBC driver?

I'd like to change the application information that is shown when inspecting Oracle 10g sessions using the Oracle Enterprise Manager application: Application Information Program 'my program' ...
0
votes
4answers
1k views

How to enumerate column names with NHibernate?

I've got a class with a bunch of [ColumnName("foo")] NHibernate attributes. Is there an easy way to ask NHibernate to list all of the ColumnNames for a given class? It sounds like it should be really ...