(str1, str2)
| 37 | |
| 38 | ## For backward compatibility |
| 39 | def StringEndsWith(str1, str2): |
| 40 | l1 = len(str1) |
| 41 | l2 = len(str2) |
| 42 | if l1 < l2: |
| 43 | return 0 |
| 44 | return (str1[(l1-l2):] == str2) |
| 45 | |
| 46 | ## |
| 47 | class TestVTKFiles: |
no outgoing calls
no test coverage detected