(string1, string2)
| 252 | |
| 253 | @staticmethod |
| 254 | def string_eq(string1, string2): |
| 255 | if string1 is None or string2 is None: |
| 256 | return False |
| 257 | return Precise(string1).equals(Precise(string2)) |
| 258 | |
| 259 | @staticmethod |
| 260 | def string_min(string1, string2): |