blob: 03c43e4d450fa9f0fc9df315f916de91b3619778 [file] [log] [blame]
laurentlbf8003cc2017-11-28 09:12:56 -08001assert_eq(int('1'), 1)
2assert_eq(int('-1234'), -1234)
3assert_eq(int(42), 42)
4assert_eq(int(-1), -1)
5assert_eq(int(True), 1)
6assert_eq(int(False), 0)
7assert_eq(int('11', 2), 3)
8assert_eq(int('11', 9), 10)
9assert_eq(int('AF', 16), 175)
10assert_eq(int('11', 36), 37)
11assert_eq(int('az', 36), 395)
12assert_eq(int('11', 10), 11)
13assert_eq(int('11', 0), 11)
14assert_eq(int('0b11', 0), 3)
15assert_eq(int('0B11', 2), 3)
16assert_eq(int('0o11', 0), 9)
17assert_eq(int('0O11', 8), 9)
18assert_eq(int('0XFF', 0), 255)
19assert_eq(int('0xFF', 16), 255)
20
21---
22int('1.5') ### invalid literal for int\(\) with base 10
23---
24int('ab') ### invalid literal for int\(\) with base 10: "ab"
25---
26int(None) ### None is not of type string or int or bool
27---
28int('123', 3) ### invalid literal for int\(\) with base 3: "123"
29---
30int('FF', 15) ### invalid literal for int\(\) with base 15: "FF"
31---
32int('123', -1) ### int\(\) base must be >= 2 and <= 36
33---
34int('123', 1) ### int\(\) base must be >= 2 and <= 36
35---
36int('123', 37) ### int\(\) base must be >= 2 and <= 36
37---
38int('0xFF', 8) ### invalid literal for int\(\) with base 8: "0xFF"
39---
40int(True, 2) ### int\(\) can't convert non-string with explicit base
41---
42int(1, 2) ### int\(\) can't convert non-string with explicit base
43---
44int(True, 10) ### int\(\) can't convert non-string with explicit base