This commit is contained in:
blueloveTH 2023-06-17 22:21:19 +08:00
parent a866c9921f
commit 97a009dcc9

View File

@ -1567,7 +1567,7 @@ inline void Dict::_probe(PyObject *key, bool &ok, int &i) const{
inline void CodeObjectSerializer::write_object(VM *vm, PyObject *obj){
buffer += 'o';
PyObject* s = vm->py_repr(obj);
write_str(CAST(Str&, s));
buffer += CAST(Str&, s).str();
buffer += END;
}