(original)
| 276 | |
| 277 | |
| 278 | def local_macro_name(original): |
| 279 | return '_hy_local_macro__' + (mangle(original) |
| 280 | # We have to do a bit of extra mangling beyond `mangle` itself to |
| 281 | # handle names with periods. |
| 282 | .replace('D', 'DN') |
| 283 | .replace('.', 'DD')) |
| 284 | |
| 285 | |
| 286 | def load_macros(module): |
no test coverage detected