You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
285 B
7 lines
285 B
# -*- coding: utf-8 -*-
|
|
import io, sys
|
|
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
txt = open(r'e:/code/crm-backend-matt/.scratch/opportunity-bugfix/t04-testall.log',
|
|
encoding='utf-8', errors='replace').read()
|
|
print('--- tail ---')
|
|
print(txt[-2200:])
|
|
|