Tagged Questions
The inspect tag has no wiki summary.
17
votes
5answers
5k views
Python: Get list of all classes within current module
I've seen plenty of examples of people extracting all of the classes from a module, usually something like:
# foo.py
class Foo:
pass
# test.py
import inspect
import foo
for name, obj in ...
13
votes
2answers
603 views
Howto get all methods of a python class with given decorator
How to get all methods of a given class A that are decorated with the @decorator2?
class A():
def method_a(self):
pass
@decorator1
def method_b(self, b):
pass
...
5
votes
4answers
149 views
Python: can a decorator determine if a function is being defined inside a class?
I'm writing a decorator, and for various annoying reasons[0] it would be expedient to check if the function it is wrapping is being defined stand-alone or as part of a class (and further which classes ...
5
votes
4answers
1k views
Inspect python class attributes
I need a way to inspect a class so I can safely identify which attributes are user-defined class attributes. The problem is that functions like dir(), inspect.getmembers() and friends return all class ...
5
votes
5answers
208 views
Python: how does inspect.ismethod work?
I'm trying to get the name of all methods in my class.
When testing how the inspect module works, i extraced one of my methods by obj = MyClass.__dict__['mymethodname'].
But now ...
4
votes
1answer
93 views
Nested function decorators that operate on arguments in python
I am writing a function decorator that will apply a conversion to the first argument of the function. It works fine if I only decorate my functions once but if I decorate them twice I get an error. ...
4
votes
1answer
330 views
How to inspect an object in script like in scala console?
When I use scala console, it prints an object in a clear style, e.g.
scala> val mike = ("mike", 40, "New York")
mike: (java.lang.String, Int, java.lang.String) = (mike,40,New York)
But if I ...
4
votes
2answers
125 views
Does dict.update affect a function's argspec?
import inspect
class Test:
def test(self, p, d={}):
d.update(p)
return d
print inspect.getargspec(getattr(Test, 'test'))[3]
print Test().test({'1':True})
print ...
3
votes
3answers
57 views
What is the benefit of using YAML?
When someone mentions the idea of saving information to external files by writing the inspect output and loading it via eval, I see that many people will criticize that idea and instead recommend ...
3
votes
2answers
92 views
Can a Python method check if it has been called from within itself?
Let's say I have a Python function f and fhelp. fhelp is designed to call itself recursively. f should not be called recursively. Is there a way for f to determine if it has been called recursively?
3
votes
3answers
64 views
How to locate the file a code object come from?
I need to know where a code object comes from ; its module. So I (naively) tried :
os.path.abspath(code.co_filename)
But that may or may not work, (I think it's because abspath depends on cwd)
...
3
votes
3answers
274 views
about_classes.rb inspect and self in ruby
I'm currently working on about_classes.rb. I'm confused on the concept of inspect and how it relates to self. Does calling an object automatically return the inspect method for that object?
class ...
3
votes
4answers
260 views
How to prevent decompilation or inspecting python code?
let us assume that there is a big, commercial project (a.k.a Project), which uses Python under the hood to manage plugins for configuring new control surfaces which can be attached and used by ...
3
votes
2answers
108 views
Inspect import path string from object
If an object is a module's class or function I need to retrieve the absolute import path as a string. Example:
>>> from a.b.c import foo
>>> get_import_path(foo)
'a.b.c.foo'
I ...
3
votes
6answers
236 views
Truncate #inspect output in irb (ruby)
I want to truncate #inspect output in irb (a large output must be cropped to MAX_LEN).
Currently, I override :inspect, :to_s methods for all specific objects.
Is there are other solution?
change ...
3
votes
3answers
258 views
Object address in Ruby
Short version: The default inspect method for a class displays the object's address.* How can I do this in a custom inspect method of my own?
*(To be clear, I want the 8-digit hex number you would ...
3
votes
1answer
468 views
How to use inspect to get the caller's info from callee?
I need to get the caller info (what file/what line) from callee. I learned that I can use inpect module for that for purposes, but not exactly how.
How to get those info with inspect? Or is there any ...
3
votes
1answer
213 views
Do the Clojure Inspector (inspect) ui buttons do anything?
Clojure comes with some basic ui apps that let you inspect objects. The generic "inspect" ui has buttons on the top for List, Table, Bean, Line, Bar, Prev, Next, etc but as far as I can tell they ...
3
votes
2answers
732 views
Ruby Configure IRB to Pretty_Inspect by Default
I'm fairly new to ruby, and am configuring IRB. I like pretty print (require 'pp'), but it seems a hassle to always type pp for it to pretty print it. What I'd like to do is make it pretty print by ...
3
votes
4answers
328 views
Introspecting a given function's nested (local) functions in Python
Given the function
def f():
x, y = 1, 2
def get():
print 'get'
def post():
print 'post'
is there a way for me to access its local get() and post() functions in a way ...
3
votes
2answers
214 views
Listing builtin functions and methods (Python)
I have came up with this:
[a for a in dir(__builtins__) if str(type(getattr(__builtins__,a))) == "<type 'builtin_function_or_method'>"]
I know its ugly. Can you show me a better/more pythonic ...
3
votes
3answers
1k views
Using chrome for web development - how to dock the inspector?
I know Firebug is the standard, but I find myself using Chrome a lot (screen space, speed, etc.) Anyway, I think their inspector is pretty good, too. Certainly good enough that I don't want to fire up ...
2
votes
2answers
62 views
Is there a way to inspect incoming args from within __getattr__ or to somehow otherwise redirect a call based upon incoming arguments?
Some background:
We have a system for transactions where we devide the flow based upon the country the transaction bills to. We have a logging table that exists in 2 instances, one DB logging ...
2
votes
2answers
96 views
Extract assigned variable name
See the update below
I even don't know how to make a short title for my problem.
In a class I have some class attributes of StringField class:
class Authors(Table):
# id field is already ...
2
votes
2answers
112 views
How do I reverse Hash.inspect or Array.inspect? (aka .to_s) in Ruby
I accidentally saved a Ruby hash to string in Ruby 1.9 by calling my_hash.to_s which is equal to my_hash.inspect. This gave me a string like this:
'{"foo"=>{"bar"=>"baz", "qux"=>"quux"}'
...
2
votes
2answers
196 views
How to obtain an array of subclasses in Rails
I have a model object which subclasses ActiveRecord. Additionally, using STI, I have defined subclasses of this object, which define different types and behaviors. The structure looks something like ...
2
votes
1answer
58 views
In Ruby, can I limit the amount of drilling down a object does when displaying itself in irb or when using .inspect?
I'm writing a class for solving sudoku puzzles that has some two dimensional arrays which contain pointers to Cells that point back to these two dimensional arrays. Something like this:
def class ...
2
votes
3answers
271 views
How can I programmatically change the argspec of a function in a python decorator?
Given a function:
def func(f1, kw='default'):
pass
bare_argspec = inspect.getargspec(func)
@decorator
def func2(f1, kw='default'):
pass
decorated_argspec = inspect.getargspec(func2)
How ...
2
votes
1answer
430 views
How can I inspect element like in Firebug via JavaScript?
I need to have a user poke at an element on a website, almost exactly like with Firebug as a developer. Does anyone know a simple way to do this in JavaScript, or a library like YUI or jQuery?
2
votes
1answer
166 views
iPhone - is there any way to look at the core data store for a live app?
I've got a live app on the app store that's producing some strange results when the user upgrades versions that I can't reproduce in my dev environment. Does anyone know of a way to inspect the core ...
2
votes
1answer
50 views
See What Line a Function Was Called From in Python Decorator
Given something like this:
@my_decorator
my_function(some, args)
Is it possible for my_decorator to discover the file and line number my_function was called from?
Thanks
2
votes
2answers
303 views
Issues with inspect.py when used inside Jython
I am using an application developed in Jython. When I try to use the inspect.py in that, it shows error message.
My code goes like this
import inspect,os,sys,pprint,imp
def ...
2
votes
2answers
194 views
Inspect Swing/SWT app at runtime?
Is there any way to inspect (in a broad sense, to get any info) a SWT app without disassembling it (as it's packed as exe and I don't know how to extract it first ;) )?
EDIT: turns out the app is a ...
1
vote
2answers
57 views
Get Python function's owning class from decorator
I have a decorator in PY. It is a method and takes the function as a parameter. I want to create a directory structure based based on the passed function. I am using the module name for the parent ...
1
vote
3answers
159 views
Groovy inspect() handle dollar sign($)
below code can not run
def map = [name:"Test :: ( %2f %25 \$ * & ! @ # ^)"]
String s = map.inspect()
println Eval.me(s)
get error:
Script1.groovy: 1: illegal string body character after dollar ...
1
vote
3answers
239 views
How to locate .php code and file on the server when inspecting elements from an internet browser? [closed]
When I inspect an element of my webpage using Firebug, I cannot identify which .php code it using and on which php file I can find this code on from the server. Is there any other way to locate pieces ...
1
vote
3answers
100 views
Firebug: How can I inspect an element I can't click on?
I'm trying to use Firebug to inspect a page element that appears when I hover over a photo.
Problem is, the element's position is dynamically offset from the mouse position, so it's impossible for me ...
1
vote
2answers
198 views
How do I find where a Ruby method is called at runtime?
This specific method is causing application to break:
# needed becasuse of a rails bug
def to_s
"#{self.class.name.underscore}__#{object_id}"
end
with the following error:
...
1
vote
1answer
69 views
Is there an equivalent of to_yaml_properties for inspect in Ruby?
Object#to_yaml_properties is a method you can use to list which instance variables you want serialized to YAML without having to re-implement the entire serialization process. If you want to exclude ...
1
vote
5answers
114 views
In Javascript, is their a way to inspect an objects methods and attributes such as Python's dir()?
In Javascript is their a way to inspect an objects methods and attributes such as Python's dir() ?
dir(object) returns
object.height
object.width
object.compute_days_till_birthday()
etc.....
1
vote
2answers
187 views
Python: inspect where an exception raise would go
Take this code:
def A():
try:
B()
except Exception:
pass
def B():
C()
def C():
print exception_handling_pointer()
A()
The function exception_handling_pointer should ...
1
vote
1answer
346 views
HTML Render with inspect element functionality? HOW TO C#
I want to do a HTML Render that shows a HTML Document, not necessary an online webpage. Then when I click over a HTML Control, it shows only the HTML where I clicked. The real intention is to get the ...
1
vote
2answers
874 views
How read method signature?
From method name I would like know its signature
i.e.
def myMethod(firt, second, third='something'):
pass
from myMethod name is possible have samenthig like that
myMethod(firt, second, ...
1
vote
2answers
226 views
How to invoke a method that has been discovered through inspect.getmembers?
import re
import sys
import inspect
import testcases
testClass = re.compile(r'.*Case$')
testMethod = re.compile(r'.*Test$')
for class_name, class_obj in inspect.getmembers(testcases, ...
1
vote
2answers
758 views
How to inspect an element in c# like firebug does?
Is there a way to inspect/spy elements in a web browser like firebug does when we move the mouse over the webpage? How to to it in c#??
EDIT:
Actually I just want to get the HTML source code from ...
1
vote
2answers
174 views
Inspect with limited recursion
I'd like to run inspect on some object, but unfortunately it's either linking to some really big objects, or has a circular reference. That results in many pages of output.
Is there some way to limit ...
1
vote
2answers
184 views
Obtaining references to function objects on the execution stack from the frame object?
Given the output of inspect.stack(), is it possible to get the function objects from anywhere from the stack frame and call these? If so, how?
(I already know how to get the names of the functions.)
...
1
vote
2answers
290 views
How do I infer the class to which a @staticmethod belongs?
I am trying to implement infer_class function that, given a method, figures out the class to which the method belongs.
So far I have something like this:
import inspect
def infer_class(f):
if ...
0
votes
0answers
20 views
How to use applescript to inspect a class
How to use applescript to reflect on an osascript class, i.e. to show all its methods?
I dont mean through Window/Library.
Oops! Your question couldn't be submitted because:
It does not meet our ...
0
votes
1answer
46 views
using python inspect to view local variables in a function
I can't figure out how to inspect a currently executing function using inspect / inspect_shell
I'm guessing it involves walking the frame hierarchy using getinnerframe and getouterframe, but I'm ...