From: Finn B. <bc...@us...> - 2001-09-05 19:52:46
|
Update of /cvsroot/jython/jython/Doc In directory usw-pr-cvs1:/tmp/cvs-serv27929 Modified Files: subclassing.ht Log Message: Fixed a bad typo in "self.super__foo()" Index: subclassing.ht =================================================================== RCS file: /cvsroot/jython/jython/Doc/subclassing.ht,v retrieving revision 2.2 retrieving revision 2.3 diff -C2 -d -r2.2 -r2.3 *** subclassing.ht 2000/11/12 22:22:06 2.2 --- subclassing.ht 2001/09/05 19:52:43 2.3 *************** *** 48,52 **** This works with the majority of methods, but protected methods cannot be called from subclasses in this way. ! Instead you have to use the "self.super_foo()" call style. <h3>Example</h3> --- 48,52 ---- This works with the majority of methods, but protected methods cannot be called from subclasses in this way. ! Instead you have to use the "self.super__foo()" call style. <h3>Example</h3> *************** *** 145,147 **** called in order to explictly choose a non-empty version. ! <p> \ No newline at end of file --- 145,147 ---- called in order to explictly choose a non-empty version. ! <p> |