Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
719 views

Python: always use __new__ instead of __init__?

I understand how both __init__ and __new__ work. I'm wondering if there is anything __init__ can do that __new__ cannot? i.e. can use of __init__ be replaced by the following pattern: class ...
6
votes
2answers
260 views

Using a class instance as a class attribute, descriptors, and properties

I have recently stated trying to use the newer style of classes in Python (those derived from object). As an excersise to familiarise myself with them I am trying to define a class which has a number ...
1
vote
2answers
106 views

Python new-style-class-related question

I am a python learner and currently hacking up a class with variable number of fields as in the "Bunch of Named Stuff" example here. class Bunch: def __init__(self, **kwds): ...
1
vote
2answers
93 views

type of class in python

why if I do: class C(): pass type(C()) I got: <type 'instance'>, but if I do: class C(object): pass type(c()) I got: <class '__main__.c'> ? The first is not very userfull
0
votes
3answers
63 views

calling init for multiple parent classes with super? [closed]

Possible Duplicate: Can Super deal with multiple inheritance? Python inheritance? I have a class structure (below), and want the child class to call the __init__ of both parents. Is this ...
0
votes
3answers
660 views

Python using derived class's method in parent class?

Can I force a parent class to call a derived class's version of a function? class Base(object): attr1 = '' attr2 = '' def virtual(self): pass # doesn't do anything ...
0
votes
3answers
295 views

Making super() work in Python's urllib2.Request

This afternoon I spent several hours trying to find a bug in my custom extension to urllib2.Request. The problem was, as I found out, the usage of super(ExtendedRequest, self), since urllib2.Request ...
0
votes
3answers
289 views

Get class object __dict__ without special attributes

For getting all the defined class attributes I try to go with TheClass.__dict__ but that also gives me the special attributes. Is there a way to get only the self-defined attributes or do I have to ...
-1
votes
2answers
164 views

Is __dict__.update() oldstyle?

I'm getting confused reading about the differences in newstyle vs oldstyle attributes. In this example: Is this code using old-style method to modify attributes? In Event() at ...