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.

unpacking.py 245B

1234567891011
  1. """ Code for checking the display of the module
  2. for unbalanced-tuple-unpacking and unpacking-non-sequence
  3. """
  4. def unpack():
  5. """ Return something"""
  6. return (1, 2, 3)
  7. def nonseq():
  8. """ Return non sequence """
  9. return 1