File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ * 3.1.0 - Apr 23 2017
2
+
3
+ - Add "sort_by" method, which allows returning a sorted copy of the
4
+ collection, using the same field access _get_item_value already defined.
5
+
6
+ - Add "count" method to return the number of items in the collection (same as
7
+ len), which matches the interface on a lot of server-side filtering ORMs, to
8
+ increase the compatability between the two.
9
+
10
+ - Make "all()" method return a copy of the collection (but same elements)
11
+
12
+ - Implement "__copy__" to do the same as "all()", leaving deepcopy to create
13
+ copy of both the collection AND the elements within it
14
+
15
+ - Load latest "runTests.py" from GoodTests.py. It is recommended that you
16
+ delete the local copy and let it download the latest GoodTests.py if you run
17
+ unit tests.
18
+
19
+ - Some more unit tests
20
+
21
+
1
22
* 3.0.1 - Apr 06 2017
2
23
- Fix MANIFEST.in to include ChangeLog properly and also include the unit tests
3
24
You can’t perform that action at this time.
0 commit comments