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.

precedence_test.py 383B

123456789101112131415161718192021
  1. """
  2. # package/__init__.py
  3. class AudioTime(object):
  4. DECIMAL = 3
  5. # package/AudioTime.py
  6. class AudioTime(object):
  7. pass
  8. # test.py
  9. from package import AudioTime
  10. # E0611 - No name 'DECIMAL' in module 'AudioTime.AudioTime'
  11. print AudioTime.DECIMAL
  12. """
  13. from __future__ import print_function
  14. from package import AudioTime
  15. __revision__ = 0
  16. print(AudioTime.DECIMAL)