[Commits] (vajda) Fixed Complex.makeString()
commits at osafoundation.org
commits at osafoundation.org
Fri Jan 9 18:07:24 PST 2004
Commit by: vajda
Modified files:
osaf/chandler/Chandler/repository/schema/Types.py 1.48 1.49
Log message:
Fixed Complex.makeString()
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/osaf/chandler/Chandler/repository/schema/Types.py.diff?r1=text&tr1=1.48&r2=text&tr2=1.49
Index: osaf/chandler/Chandler/repository/schema/Types.py
diff -u osaf/chandler/Chandler/repository/schema/Types.py:1.48 osaf/chandler/Chandler/repository/schema/Types.py:1.49
--- osaf/chandler/Chandler/repository/schema/Types.py:1.48 Fri Jan 9 18:03:09 2004
+++ osaf/chandler/Chandler/repository/schema/Types.py Fri Jan 9 18:06:54 2004
@@ -1,6 +1,6 @@
-__revision__ = "$Revision: 1.48 $"
-__date__ = "$Date: 2004/01/10 02:03:09 $"
+__revision__ = "$Revision: 1.49 $"
+__date__ = "$Date: 2004/01/10 02:06:54 $"
__copyright__ = "Copyright (c) 2002 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -232,6 +232,8 @@
def makeValue(self, data):
return complex(data)
+ def makeString(self, data):
+ return str(data)[1:-1]
class Boolean(Type):
More information about the Commits
mailing list