summaryrefslogtreecommitdiffstatshomepage
path: root/tests/unicode/file2.py
blob: b8a3419660c5c923c29c1021bc022d6086ddd30e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# test reading a given number of characters

def do(mode):
    if mode == 'rb':
        enc = None
    else:
        enc = 'utf-8'
    f = open('unicode/data/utf-8_2.txt', mode=mode, encoding=enc)
    print(f.read(1))
    print(f.read(1))
    print(f.read(2))
    print(f.read(4))
    f.close()

do('rb')
do('rt')