lasso/lasso-python-dont-decref-true-false.patch
Miro Hrončok 4aa279fd98 Python: Don't call Py_DECREF(Py_True/Py_False) in register_constants()
Avoids a Fatal Python error: bool_dealloc: deallocating True or False

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1900651
2021-09-21 11:19:00 +02:00

13 lines
500 B
Diff

diff --git a/bindings/python/lang.py b/bindings/python/lang.py
index bd7ef70..644de23 100644
--- a/bindings/python/lang.py
+++ b/bindings/python/lang.py
@@ -739,7 +739,6 @@ register_constants(PyObject *d)
else:
print_('E: unknown constant type: %r' % c[0], file=sys.stderr)
print_(' PyDict_SetItemString(d, "%s", obj);' % c[1][6:], file=fd)
- print_(' Py_DECREF(obj);', file=fd)
print_('}', file=fd)
print_('', file=fd)