summaryrefslogtreecommitdiff
path: root/django/db/models
AgeCommit message (Expand)Author
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-23Removed a Python 3-compatibility hack.Aymeric Augustin
2012-07-22[py3] Added Python 3 compatibility for xrange.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] Replaced basestring by six.string_types.Aymeric Augustin
2012-07-22[py3] Removed longs.Aymeric Augustin
2012-07-22[py3] Used six.with_metaclass wherever necessary.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-07-17Switched to use a more idiomatic construct.Alex Gaynor
2012-07-17Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
2012-07-17Fixed #17497 -- Corrected FieldError message in add_fields()Anssi Kääriäinen
2012-07-16Fixed #18056 - Cleared aggregations on DateQuery.add_date_selectNuno Maltez
2012-07-14Switched from usign a method that was about to be deprecated to normal code.Alex Gaynor
2012-07-12Remove some code that has been dead since newforms-admin was merged, many moo...Alex Gaynor
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-07-03Fixed comment wording in sql/where.pyAnssi Kääriäinen
2012-07-01Fixed a regression introduced in where.as_sql() refactorAnssi Kääriäinen
2012-07-01Refactored the empty/full result logic in WhereNode.as_sql()Anssi Kääriäinen
2012-07-01Fixed #18251 -- Removed a deadlock possibility in apploadingAnssi Kääriäinen
2012-06-26Fixed #18515 -- Conditionally regenerated filename in FileField validationClaude Paroz
2012-06-26Fixed #17485 -- Made defer work with select_relatedAnssi Kääriäinen
2012-06-23Switch to using context managers for acquiring and releasing locks.Alex Gaynor
2012-06-22Fixed #17776 - DoesNotExist is not picklableLuke Plant
2012-06-11Fixed #18463 -- Forced type() argument to be a byte stringClaude Paroz
2012-06-07Fixed #18432 -- Prevented the ForeignKey field from creating an invalid query...Jann Kleen
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-06-06Small cleanup in prefetch_related codeLuke Plant
2012-06-06Fixed #18309 - Prefetch related does not work for fkey to multitable inherite...Luke Plant
2012-06-01Fixed a typo in a comment. Refs #17742.Aymeric Augustin
2012-05-31Fixed #18407 -- Made model field's to_python methods fully accept unicode.Claude Paroz
2012-05-27Fixed #18343 -- Cleaned up deferred model implementationAnssi Kääriäinen
2012-05-24Fixed qs.order_by() join promotion for already existing joinsAnssi Kääriäinen
2012-05-24Fixed #18177 -- Cached known related instances.Aymeric Augustin
2012-05-22Replaced 'next' testing by collections.Iterator testing.Claude Paroz
2012-05-22Fixed #18304 -- Optimized save() when update_can_self_select=FalseAnssi Kääriäinen
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-17Fixed #9893 -- Validated the length of file namesAymeric Augustin
2012-05-12Fixed #4102 -- Allow update of specific fields in model.save()Andrei Antoukh
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-05-09Fix proxy model Query.remove_inherited_models()Anssi Kääriäinen
2012-05-07Made model fields comparable to other objectsSimon Charette
2012-05-07Imported zip from future_builtins instead of itertools.izip.Claude Paroz
2012-05-01Fixed #17742 -- Handled aware datetimes in DateFieldAymeric Augustin
2012-04-29Switch a datastructure internal to the ORM to be a set, instead of a dictionary.Alex Gaynor
2012-04-29Fixed #17644 -- Changed Query.alias_map to use namedtuplesAdrian Holovaty
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Removed unused variable from sql/query.pyAnssi Kääriäinen
2012-04-29Prevent Oracle from changing field.null to TrueAnssi Kääriäinen