Update of /cvsroot/modeling/ProjectModeling/Modeling
In directory sc8-pr-cvs1:/tmp/cvs-serv3963
Modified Files:
Tag: brch-0_9pre7-1-PyModel
PyModel.py
Log Message:
Fixed: defaults['doc']='' (and not None) for entities and attributes
Index: PyModel.py
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/Attic/PyModel.py,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -d -r1.1.2.3 -r1.1.2.4
*** PyModel.py 18 May 2003 16:02:20 -0000 1.1.2.3
--- PyModel.py 18 May 2003 16:36:15 -0000 1.1.2.4
***************
*** 248,252 ****
'properties': [],
'parent': '',
! 'doc': None,
}
def __init__(self, name, **kw):
--- 248,252 ----
'properties': [],
'parent': '',
! 'doc': '',
}
def __init__(self, name, **kw):
***************
*** 501,505 ****
'defaultValue': None,
'displayLabel': '',
! 'doc': None,
}
def __init__(self, name, **kw):
--- 501,505 ----
'defaultValue': None,
'displayLabel': '',
! 'doc': '',
}
def __init__(self, name, **kw):
|