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.

py3k_error_flag.py 280B

1234567891011
  1. """Contains both normal error messages and Python3 porting error messages."""
  2. # pylint: disable=too-few-public-methods
  3. raise Exception, 1 # Error emitted here with the Python 3 checker.
  4. class Test(object):
  5. """dummy"""
  6. def __init__(self):
  7. return 42