(x)
| 63 | return res |
| 64 | |
| 65 | def stringify(x): |
| 66 | if x.startswith(ATOM_CONSTANT_SUFFIX): |
| 67 | begin = len(ATOM_CONSTANT_SUFFIX) |
| 68 | end = len(x) - 1 |
| 69 | res = "'" |
| 70 | res += atom_read(int(x[begin:end])) |
| 71 | res += "'" |
| 72 | return res |
| 73 | return x |
| 74 | |
| 75 | def stringify_list(xs): |
| 76 | res = "" |
no test coverage detected