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.

misplaced_future.py 217B

123456
  1. """Test that __future__ is not the first statement after the docstring."""
  2. import collections
  3. from __future__ import print_function # [misplaced-future]
  4. from __future__ import with_statement
  5. DATA = collections