(match)
| 101 | |
| 102 | def MangleName(s): |
| 103 | def Mangle(match): |
| 104 | s = match.group(0) |
| 105 | return b'0x%02X' % s[0] |
| 106 | |
| 107 | # escape underscores at beginning and end |
| 108 | s = re.sub(b'((^_)|(_$))', Mangle, s.encode('utf-8')) |
no outgoing calls
no test coverage detected