mailr6410 - /1.3/data/prototype.py


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

Header


Content

Posted by edward on June 22, 2008 - 16:38:
Author: bugman
Date: Sun Jun 22 16:38:18 2008
New Revision: 6410

URL: http://svn.gna.org/viewcvs/relax?rev=6410&view=rev
Log:
Fix for the prototype __deepcopy__ method.


Modified:
    1.3/data/prototype.py

Modified: 1.3/data/prototype.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/data/prototype.py?rev=6410&r1=6409&r2=6410&view=diff
==============================================================================
--- 1.3/data/prototype.py (original)
+++ 1.3/data/prototype.py Sun Jun 22 16:38:18 2008
@@ -44,8 +44,8 @@
             if search('^__', name):
                 continue
 
-            # Skip the 'is_empty' method.
-            if name == 'is_empty':
+            # Skip the class methods.
+            if name in ['is_empty', 'xml_write']:
                 continue
 
             # Get the object.




Related Messages


Powered by MHonArc, Updated Sun Jun 22 17:00:22 2008