Update of /cvsroot/pygccxml/source/pyplusplus/decl_wrappers
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15666/decl_wrappers
Modified Files:
algorithm.py
Log Message:
Modified some doc strings so that epydoc doesn't generate warnings/errors anymore
Index: algorithm.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/decl_wrappers/algorithm.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** algorithm.py 6 Mar 2006 04:56:14 -0000 1.2
--- algorithm.py 8 Mar 2006 09:32:52 -0000 1.3
***************
*** 14,25 ****
def creators_affect_on_me( me ):
! """
! This algorithm finds all code creators that can influence on code generated
! by me. Description of alogrithm:
! [a b c d e f g]
! |
! + [k l m]
! |
! + [y x] <-- we are here ( x )
The answer of this algorithm is [y,l,k,d,c,b,a]
"""
--- 14,26 ----
def creators_affect_on_me( me ):
! """This algorithm finds all code creators that can influence on code generated
! by me. Description of algorithm::
!
! [a b c d e f g]
! |
! + [k l m]
! |
! + [y x] <-- we are here ( x )
!
The answer of this algorithm is [y,l,k,d,c,b,a]
"""
|