Changes between Initial Version and Version 1 of Ticket #28534, comment 6


Ignore:
Timestamp:
Aug 29, 2017, 8:57:20 AM (7 years ago)
Author:
john-parton

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28534, comment 6

    initial v1  
    77
    88Thanks for the quick response and your hard work!
     9
     10EDIT:
     11
     12At 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
     23str(left) == str(right)
     24=> False   
     25}}}
Back to Top