1# tests for things that only Python 3.6 supports
2
3# underscores in numeric literals
4print(100_000)
5print(0b1010_0101)
6print(0xff_ff)
7
8# underscore supported by int constructor
9print(int('1_2_3'))
10print(int('0o1_2_3', 8))
11