Ticket #33 (defect)
Opened 1 year ago
Last modified 1 year ago
logic.comparison broken under python2.5
Status: closed (fixed)
| Reported by: | ltnooy | Assigned to: | ltnooy |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | SQL | Version: | |
| Keywords: | Cc: | ||
| Estimate (total hours): |
Declaring logic.comparison('Name', 2, 'Eagles') under python2.5 produces this expression:
logic.Expression(lambda x: x.Name == None) but should produce: logic.Expression(lambda x: x.Name == 'Eagles')
Change History
08/21/10 17:10:52: Modified by ltnooy
- owner changed from fumanchu to ltnooy.
08/21/10 17:22:05: Modified by ltnooy
08/21/10 17:22:42: Modified by ltnooy
- status changed from new to closed.
- resolution set to fixed.

r287 fixes the issue, r288 are the updated unittests.