Changes between Initial Version and Version 1 of Ticket #19956
- Timestamp:
- 01/24/16 22:09:12 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19956
- Property Cc pbruin added
-
Ticket #19956 – Description
initial v1 16 16 TypeError: ... 17 17 }}} 18 19 ------ 20 21 Just as a remark, the hash we had in sage-6.8 was '''completely''' broken 22 {{{ 23 sage: F = GF(2).algebraic_closure() 24 sage: z3 = F.gen(3) 25 sage: z2 = F.gen(2) 26 sage: hash(z2) 27 15616093818140894 28 sage: hash(z3+z2-z3) 29 5386247743066594243 30 }}} 31 But thanks to #19016 the error now shows up!