(string1, string2)
| 264 | |
| 265 | @staticmethod |
| 266 | def string_max(string1, string2): |
| 267 | if string1 is None or string2 is None: |
| 268 | return None |
| 269 | return str(Precise(string1).max(Precise(string2))) |
| 270 | |
| 271 | @staticmethod |
| 272 | def string_gt(string1, string2): |