Changeset 440
- Timestamp:
- 05/28/07 00:46:44 (2 years ago)
- Files:
-
- cly/trunk/doc/developers-guide.rst (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cly/trunk/doc/developers-guide.rst
r439 r440 99 99 These attributes can be set in three ways: 100 100 101 -As keyword arguments passed to the node constructor:101 As keyword arguments passed to the node constructor: 102 102 103 103 .. code-block:: python … … 105 105 Node('Help', pattern=r'.+') 106 106 107 -As keyword arguments passed to the node when it is "called":107 As keyword arguments passed to the node when it is "called": 108 108 109 109 .. code-block:: python … … 111 111 Node('Help')(pattern=r'.+') 112 112 113 -By subclassing the node and defining the attribute as a class attribute:113 By subclassing the node and defining the attribute as a class attribute: 114 114 115 115 .. code-block:: python
