File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -220,5 +220,7 @@ def prop(self) -> CachedPropertySentinel:
220
220
refetch_refcount = sys .getrefcount (result )
221
221
assert refetch_refcount == cleared_refcount # Original object refcount unchanged
222
222
223
- # Now we should have 2 Sentinel instances (original + new one)
223
+ # Now we should have 2 Sentinel instances:
224
+ # - original in `result`
225
+ # - new one in `result4`
224
226
assert count_sentinels () == initial_sentinel_count + 2
Original file line number Diff line number Diff line change @@ -246,5 +246,7 @@ def prop(self) -> UnderCachedPropertySentinel:
246
246
refetch_refcount = sys .getrefcount (result )
247
247
assert refetch_refcount == cleared_refcount # Original object refcount unchanged
248
248
249
- # Now we should have 2 Sentinel instances (original + new one)
249
+ # Now we should have 2 Sentinel instances:
250
+ # - original in `result`
251
+ # - new one in `result4`
250
252
assert count_sentinels () == initial_sentinel_count + 2
You can’t perform that action at this time.
0 commit comments