Changeset 4993 for main/waeup.sirp/trunk/src/waeup/sirp/university
- Timestamp:
- 3 Feb 2010, 11:55:41 (15 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/university
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/university/certificate.py
r4920 r4993 15 15 16 16 def __init__(self, code=u'NA', title=u'Unnamed Certificate', 17 category=None,study_mode=None, start_level=None,17 study_mode=None, start_level=None, 18 18 end_level=None, application_category=None, max_pass = u''): 19 19 super(Certificate, self).__init__() 20 20 self.code = code 21 21 self.title = title 22 self.category = category23 22 self.study_mode = study_mode 24 23 self.start_level = start_level -
main/waeup.sirp/trunk/src/waeup/sirp/university/certificate.txt
r4920 r4993 23 23 -------------------- 24 24 25 .. class:: Certificate([code=u'NA',[ title=u'Unnamed Certificate',[ category=None,[ study_mode=None,[ start_level=None,[ end_level=None,[ application_category=None,[ m_prefix=u'',[ max_pass = u'']]]]]]]]])25 .. class:: Certificate([code=u'NA',[ title=u'Unnamed Certificate',[ study_mode=None,[ start_level=None,[ end_level=None,[ application_category=None,[ m_prefix=u'',[ max_pass = u'']]]]]]]]) 26 26 27 27 Create a certificate object with the given parameters. … … 77 77 :meth:`Certificate.check` -- mark a certificate as ``checked`` 78 78 79 .. attribute:: category80 81 Each :class:`Certificate` instance has a category:82 83 >>> print mycertificate.category84 None85 86 .. XXX: This is not a proper description87 79 88 80 .. attribute:: study_mode
Note: See TracChangeset for help on using the changeset viewer.