Commit c18c950
srikris
Python 3 fix for PR: #172 from dato-code/added-groupby-aggregates
PR #172 fails on Python 3 because of None comparisons.
- In Python 2: None < 1
- In Python 3: None < 2 returns an error.
The test case was changed to compare list([1,None]) where the order is
interchangable to comparisons on set([1,None]).1 parent ea65a77 commit c18c950
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1151 | 1151 | | |
1152 | 1152 | | |
1153 | 1153 | | |
1154 | | - | |
1155 | | - | |
| 1154 | + | |
| 1155 | + | |
1156 | 1156 | | |
1157 | 1157 | | |
1158 | 1158 | | |
| |||
0 commit comments