Changes between Initial Version and Version 1 of Ticket #28534, comment 6
- Timestamp:
- Aug 29, 2017, 8:57:20 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28534, comment 6
initial v1 7 7 8 8 Thanks for the quick response and your hard work! 9 10 EDIT: 11 12 At least with Python3.6, the string representation of two dicts can differ: 13 14 {{{ 15 Python 3.6.1 (default, Dec 2015, 13:05:11) 16 [GCC 4.8.2] on linux 17 left = {} 18 left['a'] = 1 19 left['b'] = 2 20 right = {} 21 right['b'] = 2 22 right['a'] = 1 23 str(left) == str(right) 24 => False 25 }}}