summaryrefslogtreecommitdiff
path: root/tests/basics/builtin_property.py
AgeCommit message (Collapse)Author
2018-05-25py/objtype: Remove TODO comment about needing to check for property.Damien George
Instance members are always treated as values, even if they are properties. A test is added to show this is the case.
2017-06-10tests/basics: Convert "sys.exit()" to "raise SystemExit".Paul Sokolovsky
2017-03-09tests/basic: Make various tests skippable.Paul Sokolovsky
2016-01-14builtin property: accept keyword argumentschrysn
this allows python code to use property(lambda:..., doc=...) idiom. named versions for the fget, fset and fdel arguments are left out in the interest of saving space; they are rarely used and easy to enable when actually needed. a test case is included.
2015-08-21tests: Add more tests to improve coverage, mostly testing exceptions.Damien George
2015-04-04tests: Add missing tests for builtins, and many other things.Damien George