tokenize_tests.txt 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. # Tests for the 'tokenize' module.
  2. # Large bits stolen from test_grammar.py.
  3. # Comments
  4. "#"
  5. #'
  6. #"
  7. #\
  8. #
  9. # abc
  10. '''#
  11. #'''
  12. x = 1 #
  13. # Balancing continuation
  14. a = (3, 4,
  15. 5, 6)
  16. y = [3, 4,
  17. 5]
  18. z = {'a':5,
  19. 'b':6}
  20. x = (len(`y`) + 5*x - a[
  21. 3 ]
  22. - x + len({
  23. }
  24. )
  25. )
  26. # Backslash means line continuation:
  27. x = 1 \
  28. + 1
  29. # Backslash does not means continuation in comments :\
  30. x = 0
  31. # Ordinary integers
  32. 0xff <> 255
  33. 0377 <> 255
  34. 2147483647 != 017777777777
  35. -2147483647-1 != 020000000000
  36. 037777777777 != -1
  37. 0xffffffff != -1
  38. # Long integers
  39. x = 0L
  40. x = 0l
  41. x = 0xffffffffffffffffL
  42. x = 0xffffffffffffffffl
  43. x = 077777777777777777L
  44. x = 077777777777777777l
  45. x = 123456789012345678901234567890L
  46. x = 123456789012345678901234567890l
  47. # Floating-point numbers
  48. x = 3.14
  49. x = 314.
  50. x = 0.314
  51. # XXX x = 000.314
  52. x = .314
  53. x = 3e14
  54. x = 3E14
  55. x = 3e-14
  56. x = 3e+14
  57. x = 3.e14
  58. x = .3e14
  59. x = 3.1e4
  60. # String literals
  61. x = ''; y = "";
  62. x = '\''; y = "'";
  63. x = '"'; y = "\"";
  64. x = "doesn't \"shrink\" does it"
  65. y = 'doesn\'t "shrink" does it'
  66. x = "does \"shrink\" doesn't it"
  67. y = 'does "shrink" doesn\'t it'
  68. x = """
  69. The "quick"
  70. brown fox
  71. jumps over
  72. the 'lazy' dog.
  73. """
  74. y = '\nThe "quick"\nbrown fox\njumps over\nthe \'lazy\' dog.\n'
  75. y = '''
  76. The "quick"
  77. brown fox
  78. jumps over
  79. the 'lazy' dog.
  80. ''';
  81. y = "\n\
  82. The \"quick\"\n\
  83. brown fox\n\
  84. jumps over\n\
  85. the 'lazy' dog.\n\
  86. ";
  87. y = '\n\
  88. The \"quick\"\n\
  89. brown fox\n\
  90. jumps over\n\
  91. the \'lazy\' dog.\n\
  92. ';
  93. x = r'\\' + R'\\'
  94. x = r'\'' + ''
  95. y = r'''
  96. foo bar \\
  97. baz''' + R'''
  98. foo'''
  99. y = r"""foo
  100. bar \\ baz
  101. """ + R'''spam
  102. '''
  103. x = u'abc' + U'ABC'
  104. y = u"abc" + U"ABC"
  105. x = ur'abc' + Ur'ABC' + uR'ABC' + UR'ABC'
  106. y = ur"abc" + Ur"ABC" + uR"ABC" + UR"ABC"
  107. x = ur'\\' + UR'\\'
  108. x = ur'\'' + ''
  109. y = ur'''
  110. foo bar \\
  111. baz''' + UR'''
  112. foo'''
  113. y = Ur"""foo
  114. bar \\ baz
  115. """ + uR'''spam
  116. '''
  117. # Indentation
  118. if 1:
  119. x = 2
  120. if 1:
  121. x = 2
  122. if 1:
  123. while 0:
  124. if 0:
  125. x = 2
  126. x = 2
  127. if 0:
  128. if 2:
  129. while 0:
  130. if 1:
  131. x = 2
  132. # Operators
  133. def d22(a, b, c=1, d=2): pass
  134. def d01v(a=1, *restt, **restd): pass
  135. (x, y) <> ({'a':1}, {'b':2})
  136. # comparison
  137. if 1 < 1 > 1 == 1 >= 1 <= 1 <> 1 != 1 in 1 not in 1 is 1 is not 1: pass
  138. # binary
  139. x = 1 & 1
  140. x = 1 ^ 1
  141. x = 1 | 1
  142. # shift
  143. x = 1 << 1 >> 1
  144. # additive
  145. x = 1 - 1 + 1 - 1 + 1
  146. # multiplicative
  147. x = 1 / 1 * 1 % 1
  148. # unary
  149. x = ~1 ^ 1 & 1 | 1 & 1 ^ -1
  150. x = -1*1/1 + 1*1 - ---1*1
  151. # selector
  152. import sys, time
  153. x = sys.modules['time'].time()
  154. @staticmethod
  155. def foo(): pass