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.

uninferable_all_object.py 182B

123456789
  1. """Test that non-inferable __all__ variables do not make Pylint crash."""
  2. __all__ = sorted([
  3. 'Dummy',
  4. 'NonExistant',
  5. 'path',
  6. 'func',
  7. 'inner',
  8. 'InnerKlass'])