Loading AUTHORS +1 −0 Original line number Diff line number Diff line Loading @@ -350,6 +350,7 @@ answer newbie questions, and generally made Django that much better: Swaroop C H <http://www.swaroopch.info> Aaron Swartz <http://www.aaronsw.com/> Ville Säävuori <http://www.unessa.net/> Christian Tanzer <tanzer@swing.co.at> Tyler Tarabula <tyler.tarabula@gmail.com> Tyson Tate <tyson@fallingbullets.com> Frank Tegtmeyer <fte@fte.to> Loading django/db/models/base.py +5 −9 Original line number Diff line number Diff line Loading @@ -31,19 +31,15 @@ except NameError: class ModelBase(type): "Metaclass for all models" def __new__(cls, name, bases, attrs): # If this isn't a subclass of Model, don't do anything special. try: parents = [b for b in bases if issubclass(b, Model)] except NameError: # 'Model' isn't defined yet, meaning we're looking at Django's own # Model class, defined below. parents = [] super_new = super(ModelBase, cls).__new__ parents = [b for b in bases if isinstance(b, ModelBase)] if not parents: return super(ModelBase, cls).__new__(cls, name, bases, attrs) # If this isn't a subclass of Model, don't do anything special. return super_new(cls, name, bases, attrs) # Create the class. module = attrs.pop('__module__') new_class = type.__new__(cls, name, bases, {'__module__': module}) new_class = super_new(cls, name, bases, {'__module__': module}) attr_meta = attrs.pop('Meta', None) abstract = getattr(attr_meta, 'abstract', False) if not attr_meta: Loading django/newforms/forms.py +2 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,8 @@ class DeclarativeFieldsMetaclass(type): """ def __new__(cls, name, bases, attrs): attrs['base_fields'] = get_declared_fields(bases, attrs) return type.__new__(cls, name, bases, attrs) return super(DeclarativeFieldsMetaclass, cls).__new__(cls, name, bases, attrs) class BaseForm(StrAndUnicode): # This is the main implementation of all the Form logic. Note that this Loading Loading
AUTHORS +1 −0 Original line number Diff line number Diff line Loading @@ -350,6 +350,7 @@ answer newbie questions, and generally made Django that much better: Swaroop C H <http://www.swaroopch.info> Aaron Swartz <http://www.aaronsw.com/> Ville Säävuori <http://www.unessa.net/> Christian Tanzer <tanzer@swing.co.at> Tyler Tarabula <tyler.tarabula@gmail.com> Tyson Tate <tyson@fallingbullets.com> Frank Tegtmeyer <fte@fte.to> Loading
django/db/models/base.py +5 −9 Original line number Diff line number Diff line Loading @@ -31,19 +31,15 @@ except NameError: class ModelBase(type): "Metaclass for all models" def __new__(cls, name, bases, attrs): # If this isn't a subclass of Model, don't do anything special. try: parents = [b for b in bases if issubclass(b, Model)] except NameError: # 'Model' isn't defined yet, meaning we're looking at Django's own # Model class, defined below. parents = [] super_new = super(ModelBase, cls).__new__ parents = [b for b in bases if isinstance(b, ModelBase)] if not parents: return super(ModelBase, cls).__new__(cls, name, bases, attrs) # If this isn't a subclass of Model, don't do anything special. return super_new(cls, name, bases, attrs) # Create the class. module = attrs.pop('__module__') new_class = type.__new__(cls, name, bases, {'__module__': module}) new_class = super_new(cls, name, bases, {'__module__': module}) attr_meta = attrs.pop('Meta', None) abstract = getattr(attr_meta, 'abstract', False) if not attr_meta: Loading
django/newforms/forms.py +2 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,8 @@ class DeclarativeFieldsMetaclass(type): """ def __new__(cls, name, bases, attrs): attrs['base_fields'] = get_declared_fields(bases, attrs) return type.__new__(cls, name, bases, attrs) return super(DeclarativeFieldsMetaclass, cls).__new__(cls, name, bases, attrs) class BaseForm(StrAndUnicode): # This is the main implementation of all the Form logic. Note that this Loading