diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | gobject/propertyhelper.py | 9 |
2 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,8 @@ 2007-08-27 Johan Dahlin <jdahlin@async.com.br> + * gobject/propertyhelper.py (property.__metaclass__.__repr__): Avoid + exporting the metaclass, just define it in the class. + * gobject/__init__.py (GObjectMeta._install_properties): Refactor a bit to make sure that it is possible to use in subclasses, fixes #470718 (Marco Giusti) diff --git a/gobject/propertyhelper.py b/gobject/propertyhelper.py index cc987ec..9fd0413 100644 --- a/gobject/propertyhelper.py +++ b/gobject/propertyhelper.py @@ -33,11 +33,6 @@ from gobject.constants import \ G_MAXULONG -class PropertyMeta(type): - def __repr__(self): - return "<class 'gobject.property'>" - - class property(object): """ Creates a new property which in conjunction with GObjectMeta will @@ -53,7 +48,9 @@ class property(object): 'value' """ - __metaclass__ = PropertyMeta + class __metaclass__(type): + def __repr__(self): + return "<class 'gobject.property'>" def __init__(self, getter=None, setter=None, type=None, default=None, nick='', blurb='', flags=_gobject.PARAM_READWRITE, |