Commit 22aff9b5 authored by Kevin Modzelewski's avatar Kevin Modzelewski

minor

parent e29222ea
......@@ -4814,7 +4814,6 @@ extern "C" void Py_Finalize() noexcept {
}
late_constants.clear();
_Py_ReleaseInternedStrings();
for (auto b : classes) {
if (!PyObject_IS_GC(b)) {
b->clearAttrs();
......@@ -4827,6 +4826,8 @@ extern "C" void Py_Finalize() noexcept {
;
assert(!constants.size());
_Py_ReleaseInternedStrings();
BoxedList* garbage = static_cast<BoxedList*>(_PyGC_GetGarbage());
int num_garbage_objects = garbage->size;
......
# expected: reffail
import uuid
# Hack to get the test passing until we support CTypes.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment