Files
openide/python/testData/refactoring/move/movableTopLevelAssignmentDetection.py

8 lines
79 B
Python

X1, X2 = 42, 'spam'
(X3) = 42
X4, = 42
X5, *other = [42]
X6 = X7 = 42
X8 = 42