[Python-checkins] pythoninfo: add Py_DEBUG (#4198) (#4581)

Victor Stinner webhook-mailer at python.org
Mon Nov 27 04:44:53 EST 2017


https://github.com/python/cpython/commit/180372c08a25332429f6175d6aa036c1ec643ca3
commit: 180372c08a25332429f6175d6aa036c1ec643ca3
branch: 2.7
author: Victor Stinner <victor.stinner at gmail.com>
committer: GitHub <noreply at github.com>
date: 2017-11-27T10:44:50+01:00
summary:

pythoninfo: add Py_DEBUG (#4198) (#4581)

(cherry picked from commit afd055a59fe0291881fc2459215ce106e424da51)

files:
M Lib/test/pythoninfo.py

diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py
index 83b1ec726e4..8b029330a2e 100644
--- a/Lib/test/pythoninfo.py
+++ b/Lib/test/pythoninfo.py
@@ -104,6 +104,14 @@ def collect_sys(info_add):
             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



More information about the Python-checkins mailing list