Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

too_many_star_expressions.py 134B

1234
  1. """Test for too-many-star-expressions."""
  2. *FIRST, *SECOND = [1, 2, 3] # [too-many-star-expressions]
  3. *FIRST_1, SECOND = (1, 2, 3)