@Override
public Object visitStr(Str node) throws Exception {
PyString s = (PyString) node.getInternalS();
if (s instanceof PyUnicode) {
module.unicodeConstant(s.asString()).get(code);
} else {
module.stringConstant(s.asString()).get(code);
}
return null;
}