PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/python/constants/runme.py

#
Python | 27 lines | 18 code | 8 blank | 1 comment | 4 complexity | 5af915c88c24e3156b24940d65d4cb57 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. # file: runme.py
  2. import example
  3. print "ICONST =", example.ICONST, "(should be 42)"
  4. print "FCONST =", example.FCONST, "(should be 2.1828)"
  5. print "CCONST =", example.CCONST, "(should be 'x')"
  6. print "CCONST2 =", example.CCONST2, "(this should be on a new line)"
  7. print "SCONST =", example.SCONST, "(should be 'Hello World')"
  8. print "SCONST2 =", example.SCONST2, "(should be '\"Hello World\"')"
  9. print "EXPR =", example.EXPR, "(should be 48.5484)"
  10. print "iconst =", example.iconst, "(should be 37)"
  11. print "fconst =", example.fconst, "(should be 3.14)"
  12. try:
  13. print "EXTERN = ", example.EXTERN, "(Arg! This shouldn't print anything)"
  14. except AttributeError:
  15. print "EXTERN isn't defined (good)"
  16. try:
  17. print "FOO = ", example.FOO, "(Arg! This shouldn't print anything)"
  18. except AttributeError:
  19. print "FOO isn't defined (good)"