(name)
| 20 | |
| 21 | |
| 22 | def get_atom_name(name): |
| 23 | # We had a todo here to convert camelCase and snake_case to BIG_SNAKE_CASE, but this code |
| 24 | # will be removed when BiDi is the default, so we're not going to bother with that. |
| 25 | name = os.path.basename(name) |
| 26 | return name.upper() |
| 27 | |
| 28 | |
| 29 | def write_atom_literal(out, name, contents, lang, utf8): |
no outgoing calls
no test coverage detected