Commit 8b9cc7e6 authored by Guido van Rossum's avatar Guido van Rossum

Add a small test to verify that member and getset descriptors now have

docstrings (using file.closed and file.name as examples).
parent 32d34c80
...@@ -1951,6 +1951,13 @@ def coercions(): ...@@ -1951,6 +1951,13 @@ def coercions():
coerce(0., C(0)) coerce(0., C(0))
coerce(0j, C(0)) coerce(0j, C(0))
def descrdoc():
if verbose: print "Testing descriptor doc strings..."
def check(descr, what):
verify(descr.__doc__ == what, repr(descr.__doc__))
check(file.closed, "flag set if the file is closed") # getset descriptor
check(file.name, "file name") # member descriptor
def test_main(): def test_main():
lists() lists()
...@@ -1992,6 +1999,7 @@ def test_main(): ...@@ -1992,6 +1999,7 @@ def test_main():
classic_comparisons() classic_comparisons()
rich_comparisons() rich_comparisons()
coercions() coercions()
descrdoc()
if verbose: print "All OK" if verbose: print "All OK"
if __name__ == "__main__": if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment