Data for updated quickdoc tests.

This commit is contained in:
Dmitry Cheryasov
2010-09-03 18:10:42 +03:00
parent 86da4b3d72
commit d747f292c0
9 changed files with 45 additions and 33 deletions

View File

@@ -0,0 +1,7 @@
class A(object):
def __getX(self):
"Doc of getter"
return self.__x
x = property(__getX)
A().<the_ref>x