mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-23 07:58:37 -06:00
Fix coercion of non-interned strings in Python 3
This commit is contained in:
@@ -36,7 +36,7 @@ make(PyUnicodeObject *str) {
|
||||
}
|
||||
|
||||
string name(c_str, len);
|
||||
return InternalName::make(c_str, len);
|
||||
return InternalName::make(name);
|
||||
}
|
||||
|
||||
InternalName::PyInternTable::const_iterator it;
|
||||
|
||||
Reference in New Issue
Block a user