Changeset 2095

Show
Ignore:
Timestamp:
09/06/07 05:14:27 (1 year ago)
Author:
arj..@yirdis.nl
Message:

doc updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphas/trunk/state.txt

    r1803 r2095  
    4747nothing about the internals of the tree class (in this case the remove() method 
    4848recursively calls remove() for each of it's children). Therefore some careful 
    49 crafting of methods may be nessecary in order to get the right effect: 
     49crafting of methods may be necessary in order to get the right effect: 
    5050 
    5151    >>> tree.remove(1)                                  # doctest: +ELLIPSIS 
     
    7575 
    76761. The observer always generates events based on 'function' calls. Even for 
    77    class method invokations. This is because, when calling a method (say 
    78    Tree.add) it's the im_func field is executed, which is a function type 
     77   class method invocations. This is because, when calling a method (say 
     78   Tree.add) it's the ``im_func`` field is executed, which is a function type 
    7979   object. 
    8080 
     
    194194   invert, translate, rotate and scale 
    195195 
    196 Testcases are described in undo.txt. 
     196Test cases are described in undo.txt. 
    197197 
    198198(disable dispatching again, not frustrating other tests) 
     
    201201    >>> state.disable_dispatching(Tree._remove) 
    202202 
     203