mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
- treat deletion by slice and subscription expressions as read access - delete instruction in dataflow only inserted for PyReferenceExpression GitOrigin-RevId: 72ae5e964a1e287e007dabb8f41433b284523a02
3 lines
93 B
Python
3 lines
93 B
Python
values = [100, 200, 300, 400, 500, 600]
|
|
del values[1]
|
|
print(values) # should not be a warning |