test.py 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. #! /usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # Above the run-comment and file encoding comment.
  4. # Comments.
  5. # TODO FIXME XXX
  6. # Keywords.
  7. with break continue del exec return pass print raise global assert lambda yield
  8. for while if elif else import from as try except finally and in is not or
  9. yield from
  10. def functionname
  11. class Classname
  12. def функция
  13. class Класс
  14. await
  15. async def Test
  16. async with
  17. async for
  18. # Builtin objects.
  19. True False Ellipsis None NotImplemented
  20. # Builtin function and types.
  21. __import__ abs all any apply basestring bool buffer callable chr classmethod
  22. cmp coerce compile complex delattr dict dir divmod enumerate eval execfile file
  23. filter float frozenset getattr globals hasattr hash help hex id input int
  24. intern isinstance issubclass iter len list locals long map max min object oct
  25. open ord pow property range raw_input reduce reload repr reversed round set
  26. setattr slice sorted staticmethod str sum super tuple type unichr unicode vars
  27. xrange zip
  28. # Builtin exceptions and warnings.
  29. BaseException Exception StandardError ArithmeticError LookupError
  30. EnvironmentError
  31. AssertionError AttributeError EOFError FloatingPointError GeneratorExit IOError
  32. ImportError IndexError KeyError KeyboardInterrupt MemoryError NameError
  33. NotImplementedError OSError OverflowError ReferenceError RuntimeError
  34. StopIteration SyntaxError IndentationError TabError SystemError SystemExit
  35. TypeError UnboundLocalError UnicodeError UnicodeEncodeError UnicodeDecodeError
  36. UnicodeTranslateError ValueError WindowsError ZeroDivisionError
  37. Warning UserWarning DeprecationWarning PendingDepricationWarning SyntaxWarning
  38. RuntimeWarning FutureWarning ImportWarning UnicodeWarning
  39. # Decorators.
  40. @ decoratorname
  41. @ object.__init__(arg1, arg2)
  42. @ декоратор
  43. @ декоратор.décorateur
  44. # Numbers
  45. 0 1 2 9 10 0x1f .3 12.34 0j 0j 34.2E-3 0b10 0o77 1023434 0x0
  46. # Erroneous numbers
  47. 077 100L 0xfffffffL 0L 08 0xk 0x 0b102 0o78 0o123LaB
  48. # Strings
  49. " test " ' test '
  50. """
  51. test
  52. """
  53. '''
  54. test
  55. '''
  56. " \a\b\c\"\'\n\r \x34\077 \08 \xag"
  57. r" \" \' "
  58. "testтест"
  59. b"test"
  60. b"test\r\n\xffff"
  61. b"тестtest"
  62. br"test"
  63. br"\a\b\n\r"
  64. # Formattings
  65. " %f "
  66. b" %f "
  67. "{0.name!r:b} {0[n]} {name!s: } {{test}} {{}} {} {.__len__:s}"
  68. b"{0.name!r:b} {0[n]} {name!s: } {{test}} {{}} {} {.__len__:s}"
  69. "${test} ${test ${test}aname $$$ $test+nope"
  70. b"${test} ${test ${test}aname $$$ $test+nope"
  71. # Doctests.
  72. """
  73. Test:
  74. >>> a = 5
  75. >>> a
  76. 5
  77. Test
  78. """
  79. '''
  80. Test:
  81. >>> a = 5
  82. >>> a
  83. 5
  84. Test
  85. '''
  86. # Erroneous symbols or bad variable names.
  87. $ ? 6xav
  88. && || ===
  89. # Indentation errors.
  90. break
  91. # Trailing space errors.
  92. break
  93. """
  94. test
  95. """