<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.2900.2722" name=GENERATOR></HEAD>
<BODY>
<DIV><SPAN class=650101400-27092005><FONT face=Arial size=2>dir does not work
correctly for inherited classes.</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2>Repro:</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial size=2>class
foo():</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005> <FONT face=Arial
size=2>def fooprint(self, b):</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005>
<FONT face=Arial size=2>print(b);</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial size=2>class
bar(foo):</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005> <FONT face=Arial
size=2>def barprint(self,b):</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005>
<FONT face=Arial size=2>print(b);</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2>dir(foo)</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial size=2>['__doc__',
'fooprint']</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2>dir(bar)</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial size=2>['__doc__',
'barprint']</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial
size=2></FONT></SPAN> </DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial size=2>Should be
dir(bar)</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005><FONT face=Arial size=2>['__doc__',
'barprint', 'fooprint']</FONT></SPAN></DIV>
<DIV><SPAN class=650101400-27092005></SPAN> </DIV></BODY></HTML>