- 13 Agu, 2012 8 kayıt (commit)
-
-
Florian Apolloner yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
Thanks Andrews Medina for the initial patch.
-
Claude Paroz yazdı
-
Anssi Kääriäinen yazdı
Fixed a regression introduced in 59a65598.
-
- 12 Agu, 2012 18 kayıt (commit)
-
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Andrei Antoukh yazdı
Deferred models now automatically update only the fields which are loaded from the db (with .only() or .defer()). In addition, any field set manually after the load is updated on save.
-
Anssi Kääriäinen yazdı
This patch removes an unconditional float(value) conversion from db backend default convert_values() method. This can cause problems when aggregating over character fields for example. In addition, Oracle and SQLite already return the bare value from their convert_values(). In the long term the converting should be done by fields, and the fields should then call database backend specific converters when needed. The current setup is inflexible for 3rd party fields. Thanks to Merlijn van Deen for the original patch.
-
Claude Paroz yazdı
Thanks Aymeric Augustin for the review.
-
Claude Paroz yazdı
-
Anssi Kääriäinen yazdı
The outer query's set of reusable joins (can_reuse) was passed to the inner query's add_filter call. This was incorrect.
-
Karen Tracey yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
This mix-in is superseded by the @python_2_unicode_compatible decorator.
-
Aymeric Augustin yazdı
* Renamed the __unicode__ methods * Applied the python_2_unicode_compatible decorator * Removed the StrAndUnicode mix-in that is superseded by python_2_unicode_compatible * Kept the __unicode__ methods in classes that specifically test it under Python 2
-
Aymeric Augustin yazdı
This doesn't deal with classes that define both __unicode__ and __str__; the definition of __str__ should be removed first. It doesn't guarantee that __str__ will return a str (rather than bytes) under Python 3 either.
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
These methods actually return unicode.
-
Aymeric Augustin yazdı
These classes already have an identical __unicode__ method, which will be used after an upcoming refactoring.
-
Aymeric Augustin yazdı
on Python 3.
-
Florian Apolloner yazdı
-
Martijn Vermaat yazdı
-
- 11 Agu, 2012 13 kayıt (commit)
-
-
Karen Tracey yazdı
Made behavior given None consistent with how non-numerics were handled. Thanks to ja.geb@me.com for the report.
-
Claude Paroz yazdı
reraise with second argument to None is not supported.
-
Karen Tracey yazdı
This allows the test suite to run without errors on Windows.
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Karen Tracey yazdı
Corrected to always generate the cache keys from file names with forward slashes, not backslashes.
-
Florian Apolloner yazdı
Thanks to simonb for the report and the initial patch.
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
* Using str() when Python 2 expects bytes and Python 3 Unicode * Fixed reraise-ing syntax * Fixed slicing of byte strings
-
Claude Paroz yazdı
-
Claude Paroz yazdı
-
- 10 Agu, 2012 1 kayıt (commit)
-
-
Andrews Medina yazdı
-