The new-style-class tag has no wiki summary.
7
votes
4answers
313 views
How to check if object is instance of new-style user-defined class?
Code:
import types
class C(object):
pass
c = C()
print(isinstance(c, types.InstanceType))
Output:
False
What correct way to check if object is instance of user-defined class for ...
2
votes
1answer
52 views
Why does overriding __getattribute__ to proxy a value screw up isinstance?
Why does this happen?
class IsInstanceScrewer(object):
def __init__(self, value):
self.value = value
def __getattribute__(self, name):
if name in ('value',):
...
1
vote
1answer
77 views
What is the purpose of Python's property.getter?
Since Python strives for there to be one right way, I'm wondering what the purpose of property.getter is. In this example WhyMe defines a getter but Other doesn't so I'm wondering what the point of ...
1
vote
2answers
158 views
old-style and new-style classes in Python 2.7? [duplicate]
Possible Duplicate:
Old style and new style classes in Python
What is the current state of affairs with new-style and old-style classes in Python 2.7? I don't work with Python often but I ...
1
vote
2answers
71 views
What's a simple utility function to differentiate between an old-style and a new-style python class or object
What's a simple utility function to differentiate between an old-style and a new-style python class or object?
Are the following correct/complete:
isNewStyle1 = lambda o: isinstance(hasattr(o, ...
4
votes
2answers
176 views
Descriptors and python-provided attributes
I am learning Python, and I am trying to understand descriptors better. When I look at this Python online book: http://www.cafepy.com/article/python_attributes_and_methods/ch01s05.html, it says:
If ...
3
votes
2answers
190 views
Old-style classes, new-style classes and metaclasses
In Python 2.x, all new-style classes inherit from object implicitly or explicitly. Then look at this:
>>> class M(type):
... pass
...
>>> class A:
... __metaclass__ = M
...
...
4
votes
1answer
286 views
Python's property decorator does not work as expected
class Silly:
@property
def silly(self):
"This is a silly property"
print("You are getting silly")
return self._silly
@silly.setter
def silly(self, value):
...
0
votes
1answer
3k views
TypeError: Error when calling the metaclass bases a new-style class can't have only classic bases
class A():
@staticmethod
def call():
print('a')
class C(type):
def __repr__(self):
return 'somename'
class B(A):
__metaclass__ = C
@staticmethod
def call():
print('b')
def ...
23
votes
1answer
462 views
Why isn't __new__ in Python new-style classes a class method?
The Changelog for Python 2.2 (where new-style classes were introduced) says the following about the __new__ function:
__new__ is a static method, not a class method. I initially thought it would ...
0
votes
3answers
641 views
calling init for multiple parent classes with super? [duplicate]
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 ...
8
votes
2answers
330 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 ...
0
votes
2answers
530 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 ...
1
vote
2answers
276 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
140 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
17
votes
4answers
2k 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 ...
16
votes
6answers
2k views
What is the purpose of subclassing the class “object” in Python?
All the Python built-ins are subclasses of object and I come across many user-defined classes which are too. Why? What is the purpose of the class object? It's just an empty class, right?
3
votes
1answer
239 views
Are Python properties broken?
How can it be that this test case
import unittest
class PropTest(unittest.TestCase):
def test(self):
class C():
val = 'initial val'
def get_p(self):
...
0
votes
3answers
2k 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
361 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
459 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 ...
2
votes
1answer
397 views
How do I call a property setter from __init__
I have the following chunk of python code:
import hashlib
class User:
def _set_password(self, value):
self._password = hashlib.sha1(value).hexdigest()
def _get_password(self):
...
6
votes
2answers
761 views
Python object @property help
I'm trying to create a point class which defines a property called "coordinate". However, it's not behaving like I'd expect and I can't figure out why.
class Point:
def __init__(self, ...
27
votes
2answers
8k views
Why does @foo.setter in Python not work for me?
So, I'm playing with decorators in Python 2.6, and I'm having some trouble getting them to work. Here is my class file:
class testDec:
@property
def x(self):
print 'called getter'
...
155
votes
8answers
28k views
Old style and new style classes in Python
What is the difference between old style and new style classes in Python? Is there ever a reason to use old-style classes these days?