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.

trailing_whitespaces.py 432B

1234567891011
  1. """Regression test for trailing-whitespace (C0303)."""
  2. # pylint: disable=mixed-line-endings
  3. from __future__ import print_function
  4. # +1: [trailing-whitespace]
  5. print('some trailing whitespace')
  6. # +1: [trailing-whitespace]
  7. print('trailing whitespace does not count towards the line length limit')
  8. print('windows line ends are ok')
  9. # +1: [trailing-whitespace]
  10. print('but trailing whitespace on win is not')