Lines Matching refs:test
57 def test(value, base): function
64 test('x', 0)
65 test('1x', 0)
66 test(' 1x', 0)
67 test(' 1' + chr(2) + ' ', 0)
68 test('', 0)
69 test(' ', 0)
70 test(' \t\t ', 0)
71 test('0x', 16)
72 test('0x', 0)
73 test('0o', 8)
74 test('0o', 0)
75 test('0b', 2)
76 test('0b', 0)
77 test('0b2', 2)
78 test('0o8', 8)
79 test('0xg', 16)
80 test('1 1', 16)
81 test('123', 37)