(matchobj)
| 31 | |
| 32 | |
| 33 | def quote_replace(matchobj): |
| 34 | return "{}{}{}{}".format( |
| 35 | matchobj.group(1), |
| 36 | matchobj.group(2), |
| 37 | "x" * len(matchobj.group(3)), |
| 38 | matchobj.group(2), |
| 39 | ) |
| 40 | |
| 41 | |
| 42 | def mask_quotes(input): |
nothing calls this directly
no test coverage detected
searching dependent graphs…