We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f604eb8 commit ce5c768Copy full SHA for ce5c768
test/properties.py
@@ -56,11 +56,10 @@ class instance count from object:
56
1
57
58
as expected you can't assign new value to read only property
59
->>> x1.value_r = 2
+>>> x1.value_r = 2 # doctest: +ELLIPSIS
60
Traceback (most recent call last):
61
- File "properties.py", line 49, in ?
62
- x1.value_r = 2
63
-AttributeError: can't set attribute
+ ...
+AttributeError: ...
64
65
setting value_rw to 2. value_direct:
66
>>> x1.value_rw = 2
0 commit comments