summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
AgeCommit message (Expand)Author
2013-02-24[1.5.x] Fixed #19688 -- Allow model subclassing with a custom metaclass using...Simon Charette
2013-01-08[1.5.x] Fixed #19576 -- Use `six.with_metaclass` uniformously accross code base.Simon Charette
2012-12-28[1.5.x] Fix #19524 -- Incorrect caching of parents of unsaved model instances.Aymeric Augustin
2012-11-27[1.5.x] Fixed #19362 -- Detected invalid use of @python_2_unicode_compatible.Aymeric Augustin
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-22Revert "Fixed #18063 -- Avoid unicode in Model.__repr__ in python 2"Simon Meers
2012-08-20Fixed #18063 -- Avoid unicode in Model.__repr__ in python 2Simon Meers
2012-08-15[py3] Removed excessive usage of smart_bytesClaude Paroz
2012-08-14[py3] Fixed admin_views testsClaude Paroz
2012-08-14[py3] Removed unnecessary calls to .keys()Aymeric Augustin
2012-08-12Fixed #18306 -- Made deferred models issue update_fields on saveAndrei Antoukh
2012-08-12[py3] Made __repr__ return str with Python 3Claude Paroz
2012-08-12[py3] Avoided returning bytes in Model.__str__Aymeric Augustin
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-07[py3] Applied minor fixes so the test suite startsAymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-23Removed a Python 3-compatibility hack.Aymeric Augustin
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Used six.with_metaclass wherever necessary.Aymeric Augustin
2012-07-08Fixed #18590 - Reverted Python 2.4 workaround for Model picklingClaude Paroz
2012-07-05Fixed #18362 - Made model.save() update_fields accept attnamesAndrei Antoukh
2012-06-22Fixed #17776 - DoesNotExist is not picklableLuke Plant
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-27Fixed #18343 -- Cleaned up deferred model implementationAnssi Kääriäinen
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-12Fixed #4102 -- Allow update of specific fields in model.save()Andrei Antoukh
2012-05-07Imported zip from future_builtins instead of itertools.izip.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-20Fixed #17615 -- Corrected unique field validation when using multitable inher...Anssi Kääriäinen
2012-03-13Fixed #10498 (again) -- Made sure the improvements done in r17641 have a smal...Jannis Leidel
2012-03-03Fixed #10498 -- Fixed using ugettext_lazy values when creating model instance...Jannis Leidel
2012-02-22Fixed #17678 -- Corrected setup of _meta.proxy_for_model and added _meta.conc...Carl Meyer
2011-11-12Fix #13864: Removed database error raised when force_update is requsted on sa...Karen Tracey
2011-09-10Remove a bunch of deadcode/dead imports.Alex Gaynor
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-09Fixed #16155 -- Removed Python 2.4 compatibility constructs from code and men...Ramiro Morales
2011-06-09Fixed #8913 - Make "must be unique" error messages customisable. Thanks to Le...Andrew Godwin
2011-04-20Fixed #15866, #15850 -- Prevented get_model() and get_models() from returning...Carl Meyer
2011-04-02Fixed #15743 -- Fixed tense in a docstring in db/models/base.py. Thanks, jMylesAdrian Holovaty
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-03-14Fixed #15601 -- Corrected a weird typo. Thanks, jMylesAdrian Holovaty
2011-01-26Fixed #13206 -- call super().__init__() in Model.__init__ to allow mixins to ...Alex Gaynor
2011-01-09Fixed #14951 -- Made the unique_for_{date,month,year} model field constraints...Ramiro Morales
2010-11-18Fixed pk uniqueness validation for new objects created outside of a ModelForm...Carl Meyer
2010-11-18Fixed #14234 -- Re-validating a model instance added via ModelForm no longer ...Carl Meyer