- 28 Nis, 2018 1 kayıt (commit)
-
-
priyanshsaxena yazdı
-
- 27 Nis, 2018 3 kayıt (commit)
-
-
Oscar Esgalha yazdı
Fixed #29367 -- Fixed model state on objects with a primary key created with QuerySet.bulk_create().
-
Nicolas Noé yazdı
-
Claude Paroz yazdı
-
- 25 Nis, 2018 1 kayıt (commit)
-
-
Claude Paroz yazdı
-
- 24 Nis, 2018 2 kayıt (commit)
-
-
Tim Graham yazdı
-
Claude Paroz yazdı
-
- 23 Nis, 2018 5 kayıt (commit)
-
-
François Freitag yazdı
COUNT is more expensive than EXISTS; use the latter when possible.
-
François Freitag yazdı
Instead of loading all QuerySet results in memory, count the number of entries. This adds an extra query when list() or tuple() is called on the choices (because both call __len__() then __iter__()) but uses less memory since the QuerySet results won't be cached. In most cases, the choices will only be iterated on, meaning that __len__() won't be called and only one query will be executed.
-
Stefan R. Filipek yazdı
-
adamth yazdı
-
Hasan Ramezani yazdı
-
- 21 Nis, 2018 1 kayıt (commit)
-
-
Hasan Ramezani yazdı
Thanks Tim Graham for the fix.
-
- 20 Nis, 2018 4 kayıt (commit)
-
-
orlnub123 yazdı
-
Tim Graham yazdı
-
Tom yazdı
-
drd0013 yazdı
-
- 19 Nis, 2018 7 kayıt (commit)
-
-
Adnan Umer yazdı
-
Adnan Umer yazdı
-
Adnan Umer yazdı
-
Tom yazdı
-
Nick Pope yazdı
-
Burhanuddin Baharuddin yazdı
-
Tim Graham yazdı
Obsolete since numpy 1.12.0.
-
- 18 Nis, 2018 3 kayıt (commit)
-
-
Tim Graham yazdı
-
Tim Graham yazdı
-
Brett Cannon yazdı
-
- 17 Nis, 2018 3 kayıt (commit)
-
-
Jon Dufresne yazdı
-
Tim Graham yazdı
-
Mariusz Felisiak yazdı
-
- 16 Nis, 2018 5 kayıt (commit)
-
-
Chris Jerdonek yazdı
-
Tim Graham yazdı
-
Chris Jerdonek yazdı
-
GS-14 yazdı
-
Daniel Miller yazdı
Regression in cfff2af0.
-
- 15 Nis, 2018 1 kayıt (commit)
-
-
Ben Menesini yazdı
-
- 14 Nis, 2018 1 kayıt (commit)
-
-
Alex Gaynor yazdı
Thanks Alex Gaynor for contributing to the patch.
-
- 13 Nis, 2018 3 kayıt (commit)
-
-
Matthias Kestenholz yazdı
-
Mariusz Felisiak yazdı
Fixed #29286 -- Fixed column mismatch crash with QuerySet.values() or values_list() after combining an annotated and unannotated queryset with union(), difference(), or intersection(). Regression in a0c03c62. Thanks Tim Graham and Carlton Gibson for reviews.
-
Flávio Juvenal yazdı
-