diff --git a/pycdas.cpp b/pycdas.cpp index 2be7a4f..cdb6bf0 100644 --- a/pycdas.cpp +++ b/pycdas.cpp @@ -211,6 +211,14 @@ void output_object(PycRef obj, PycModule* mod, int indent, iputs(indent, "}\n"); } break; + case PycObject::TYPE_FROZENSET: + { + iputs(indent, "frozenset({\n"); + for (const auto& val : obj.cast()->values()) + output_object(val, mod, indent + 1, flags); + iputs(indent, "})\n"); + } + break; case PycObject::TYPE_NONE: iputs(indent, "None\n"); break;