aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/pycxx/Python2/CxxDebug.hxx
diff options
context:
space:
mode:
authorqrort <qrort@yandex-team.com>2022-11-30 23:47:12 +0300
committerqrort <qrort@yandex-team.com>2022-11-30 23:47:12 +0300
commit22f8ae0e3f5d68b92aecccdf96c1d841a0334311 (patch)
treebffa27765faf54126ad44bcafa89fadecb7a73d7 /contrib/libs/pycxx/Python2/CxxDebug.hxx
parent332b99e2173f0425444abb759eebcb2fafaa9209 (diff)
downloadydb-22f8ae0e3f5d68b92aecccdf96c1d841a0334311.tar.gz
validate canons without yatest_common
Diffstat (limited to 'contrib/libs/pycxx/Python2/CxxDebug.hxx')
-rwxr-xr-xcontrib/libs/pycxx/Python2/CxxDebug.hxx17
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/libs/pycxx/Python2/CxxDebug.hxx b/contrib/libs/pycxx/Python2/CxxDebug.hxx
new file mode 100755
index 00000000000..b646ffdd9af
--- /dev/null
+++ b/contrib/libs/pycxx/Python2/CxxDebug.hxx
@@ -0,0 +1,17 @@
+//
+// CxxDebug.hxx
+//
+// Copyright (c) 2008 Barry A. Scott
+//
+#ifndef __CXX_Debug_hxx
+#define __CXX_Debug_hxx
+
+//
+// Functions useful when debugging PyCXX
+//
+#ifdef PYCXX_DEBUG
+extern void bpt();
+extern void printRefCount( PyObject *obj );
+#endif
+
+#endif