Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pya/pya/pyaCallables.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pya_object_deallocate (PyObject *self)
// may trigger a GC (https://github.com/KLayout/klayout/issues/1054).
// According to the comments this may be turned into a release mode assertion, so
// we better work around it.
++self->ob_refcnt;
Py_IncRef(self);

// Mute Python warnings in debug case
PyObject_GC_UnTrack (self);
Expand Down
Loading