(string1, string2)
| 246 | |
| 247 | @staticmethod |
| 248 | def string_equals(string1, string2): |
| 249 | if string1 is None or string2 is None: |
| 250 | return False |
| 251 | return Precise(string1).equals(Precise(string2)) |
| 252 | |
| 253 | @staticmethod |
| 254 | def string_eq(string1, string2): |