1. 27 Sep, 2001 4 commits
    • Fred Drake's avatar
      Fix some markup errors. · 4cbcbf19
      Fred Drake authored
      4cbcbf19
    • Fred Drake's avatar
      Markup adjustment: \[...\] is math markup and does not translate well when · d8a56982
      Fred Drake authored
      used with text as was done here.  Fixed so that the typeset version wraps
      the warning text and the HTML version does not create images of the warning
      text.
      d8a56982
    • Tim Peters's avatar
      docroutine() (both instances): Docstrings for class methods weren't · d9d0f520
      Tim Peters authored
      getting displayed, due to a special case here whose purpose I didn't
      understand.  So just disabled the doc suppression here.
      
      Another special case here skips the docs when picking apart a method
      and finding that the im_func is also in the class __dict__ under
      the same name.  That one I understood.  It has a curious consequence,
      though, wrt inherited properties:  a static class copies inherited stuff
      into the inheriting class's dict, and that affects whether or not this
      special case triggers.  The upshoot is that pydoc doesn't show the
      function docstrings of getter/setter/deleter functions of inherited
      properties in the property section when the class is static, but does
      when the class is dynamic (bring up Lib/test/pydocfodder.py under
      GUI pydoc to see this).
      d9d0f520
    • Tim Peters's avatar
      List class attrs in MRO order of defining class instead of by alphabetic · 400ce47d
      Tim Peters authored
      order of defining class's name.
      400ce47d
  2. 26 Sep, 2001 26 commits
  3. 25 Sep, 2001 10 commits