pythoninfo: add Py_DEBUG (#4198) (#4581)
(cherry picked from commit afd055a59fe0291881fc2459215ce106e424da51)
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py
index 83b1ec7..8b02933 100644
--- a/Lib/test/pythoninfo.py
+++ b/Lib/test/pythoninfo.py
@@ -104,6 +104,14 @@
encoding = '%s/%s' % (encoding, errors)
info_add('sys.%s.encoding' % name, encoding)
+ # Were we compiled --with-pydebug or with #define Py_DEBUG?
+ Py_DEBUG = hasattr(sys, 'gettotalrefcount')
+ if Py_DEBUG:
+ text = 'Yes (sys.gettotalrefcount() present)'
+ else:
+ text = 'No (sys.gettotalrefcount() missing)'
+ info_add('Py_DEBUG', text)
+
def collect_platform(info_add):
import platform