- Project tools
-
-
- How do I...
-
| Category |
Featured projects |
| scm |
Subversion,
Subclipse,
TortoiseSVN,
RapidSVN
|
| issuetrack |
Scarab |
| requirements |
xmlbasedsrs |
| design |
ArgoUML |
| techcomm |
SubEtha,
eyebrowse,
midgard,
cowiki |
| construction |
antelope,
scons,
frameworx,
build-interceptor,
propel,
phing
|
| testing |
maxq,
aut
|
| deployment |
current |
| process |
ReadySET |
| libraries |
GEF,
Axion,
Style,
SSTree
|
| Over 500 more tools... |
|
Module commitmessage.attribute
| Function Summary |
| |
attribute(attrname,
permit,
fget,
fset,
fdel,
doc)
returns a property associated with 'attrname'. |
attribute(attrname,
permit='rwd',
fget=None,
fset=None,
fdel=None,
doc='')
returns a property associated with 'attrname'.
By default, a simple property with get, set, and delete methods
will be created. Optionally, specific get/set/del methods may be
supplied. You can also choose to omit the creation of one or more
of the default get/set/del methods via the 'permit' flag:
'r': readable, 'w':writable, 'd':deletable
So, if you want a property that is readable and deletable, but not
writable, use "permit='rd'".
-
|
|