commit | 5f8b0b1fd4801b4808223077643c24d41130b81e | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Tue Sep 02 02:09:05 2003 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Tue Sep 02 02:09:05 2003 +0000 |
tree | cd83260f9b194ddaebed6590f2a780e5a2bdd8a2 | |
parent | 5d2e777787fe30a371987b11904bbd0fbcec7840 [diff] |
SF 798269: bug fix for doctest (sf bug id: 798254 (Contributed by Alexander Belopolsky.) Doctest would crash when encountering unbound methods: class A: def f(self): pass class C(A): g = A.f