mailr14556 - /1.3/status.py


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

Header


Content

Posted by edward on September 01, 2011 - 11:14:
Author: bugman
Date: Thu Sep  1 11:14:17 2011
New Revision: 14556

URL: http://svn.gna.org/viewcvs/relax?rev=14556&view=rev
Log:
The status container instance is now private in the Relax_lock objects.


Modified:
    1.3/status.py

Modified: 1.3/status.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/status.py?rev=14556&r1=14555&r2=14556&view=diff
==============================================================================
--- 1.3/status.py (original)
+++ 1.3/status.py Thu Sep  1 11:14:17 2011
@@ -461,7 +461,7 @@
         self._lock = RLock()
 
         # The status container.
-        self.status = Status()
+        self._status = Status()
 
         # Fake lock.
         if self._fake_lock:
@@ -477,7 +477,7 @@
         """
 
         # Debugging.
-        if self.status.debug:
+        if self._status.debug:
             sys.stdout.write("debug> Acquisition of '%s' by '%s'.\n" % 
(self.name, acquirer))
 
         # Fake lock.
@@ -514,7 +514,7 @@
         """
 
         # Debugging.
-        if self.status.debug:
+        if self._status.debug:
             sys.stdout.write("debug> Release of '%s' by '%s'.\n" % 
(self.name, acquirer))
 
         # Fake lock.




Related Messages


Powered by MHonArc, Updated Thu Sep 01 11:20:01 2011