(string, old, new, max=1)
| 94 | |
| 95 | # add by wpf for yuan test |
| 96 | def right_replace(string, old, new, max=1): |
| 97 | return string[::-1].replace(old[::-1], new[::-1], max)[::-1] |
| 98 | |
| 99 | |
| 100 | def preprocess( |
no outgoing calls
no test coverage detected
searching dependent graphs…