Bug 1270002 - Use sliced array to ignore trailing tokens. r=mccr8

This commit is contained in:
Henry Chang 2016-05-04 00:17:00 -04:00
Родитель ba61fbfcaa
Коммит 3ca7032d96
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -43,7 +43,7 @@ def process_log(log_lines):
obj,
ignore,
operation,
count,) = log_line.strip('\r\n').split(' ')
count,) = log_line.strip('\r\n').split(' ')[:5]
# for AddRef/Release `count' is the refcount,
# for Ctor/Dtor it's the size.