0
votes
1answer
88 views
python attribute lookup without any descriptor magic?
I've started to use the python descriptor protocol more extensively in the code I've been writing. Typically, the default python lookup magic is what I want to happen, but sometimes I'm finding I …
2
votes
1answer
62 views
decypher with me that obfuscated MultiplierFactory
This week on comp.lang.python, an "interesting" piece of code was posted by Steven D'Aprano as a joke answer to an homework question. Here it is:
class MultiplierFactory(object):
def …
0
votes
4answers
91 views
Querying data based on 3rd level relationship in CakePHP
I have the following relationships set up:
A HABTM B
B belongsTo C
C hasMany B
Now, for a given A, I need all C with the B's attached. I can write the SQL queries, but what's the proper CakePHP …
4
votes
2answers
222 views
Multiply operator applied to list(data structure)
Hello there
I'm reading How to think like a computer scientist which is an introductory text for "Python Programming".
I want to clarify the behaviour of multiply operator (*) when applied to lists.
…
1
vote
2answers
272 views
Get class that defined method in Python
How can I get the class that defined a method in Python?
I'd want the following example to print "main.FooClass":
class FooClass:
def foo_method(self):
print "foo"
class …
2
votes
3answers
311 views
Getting object’s parent namespace in python?
Hello.
In python it's possible to use '.' in order to access object's dictionary items. For example:
class test( object ) :
def __init__( self ) :
self.b = 1
def foo( self ) :
pass
obj = …
1
vote
3answers
325 views
Looping over a Python / IronPython Object Methods
What is the proper way to loop over a Python object's methods and call them?
Given the object:
class SomeTest():
def something1(self):
print "something 1"
def something2(self):
print …
1
vote
5answers
82 views
Is there a way to access the formal parameters if you implement __getattribute__
It seems as thought getattribute has only 2 parameters (self, name).
However, in the actual code, the method I am intercepting actual takes arguments.
Is there anyway to access those arguments?
…
3
votes
6answers
172 views
How do you know when looking at the list of attributes and methods listed in a dir which are attributes and which are methods?
I am working through trying to learn to program in Python and am focused on getting a better handle on how to use Standard and other modules. The dir function seems really powerful in the interpreter …
2
votes
5answers
644 views
Python introspection: How to get an ‘unsorted’ list of object attributes?
The following code
import types
class A:
class D:
pass
class C:
pass
for d in dir(A):
if type(eval('A.'+d)) is types.ClassType:
print d
outputs
C
D
How do I …
4
votes
2answers
806 views
Python Reflection and Type Conversion
In Python, functions like str(), int(), float(), etc. are generally used to perform type conversions. However, these require you to know at development time what type you want to convert to. A …
1
vote
2answers
315 views
Problem using super(python 2.5.2)
I'm writing a plugin system for my program and I can't get past one thing:
class ThingLoader(object):
'''
Loader class
'''
def loadPlugins(self):
'''
Get all the plugins from …
2
votes
5answers
598 views
How Do I Perform Introspection on an Object in Python 2.x?
I'm using Python 2.x and I have an object I'm summoning from the aether; the documentation on it is not particularly clear. I would like to be able to get a list of properties for that object and the …
3
votes
3answers
1k views
Getting the class name of an instance in Python
Hi,
How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance has been derived?
Was …
3
votes
1answer
132 views
Why aren’t all the names in dir(x) valid for attribute access?
Why would a coder stuff things into __dict__ that can't be used for attribute access? For example, in my Plone instance, dir(portal) includes index_html, but portal.index_html raises AttributeError. …
