mailr26558 - /trunk/devel_scripts/memory_leak_test_relax_fit.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on November 13, 2014 - 10:20:
Author: bugman
Date: Thu Nov 13 10:20:43 2014
New Revision: 26558

URL: http://svn.gna.org/viewcvs/relax?rev=26558&view=rev
Log:
Added a debugging Python version check to the 
devel_scripts/memory_leak_test_relax_fit.py script.

This prevents the script from being executed with a normal Python binary.


Modified:
    trunk/devel_scripts/memory_leak_test_relax_fit.py

Modified: trunk/devel_scripts/memory_leak_test_relax_fit.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/devel_scripts/memory_leak_test_relax_fit.py?rev=26558&r1=26557&r2=26558&view=diff
==============================================================================
--- trunk/devel_scripts/memory_leak_test_relax_fit.py   (original)
+++ trunk/devel_scripts/memory_leak_test_relax_fit.py   Thu Nov 13 10:20:43 
2014
@@ -16,6 +16,11 @@
 # Python module imports.
 from os import sep
 import sys
+
+# Check.
+if not hasattr(sys, 'gettotalrefcount'):
+    print("This is not a debugging compiled version of Python, quitting!")
+    sys.exit()
 
 # relax module imports.
 from data_store import Relax_data_store; ds = Relax_data_store()




Related Messages


Powered by MHonArc, Updated Thu Nov 13 11:40:02 2014