(context)
| 14 | |
| 15 | |
| 16 | def visit_Str(context): |
| 17 | node = String(context.node["s"]) |
| 18 | node.enrich_from_previous(context.node) |
| 19 | context.replace(node) |
| 20 | return node |
| 21 | |
| 22 | |
| 23 | def visit_Bytes(context): |
nothing calls this directly
no test coverage detected