Bug 818628 - Handle long exit code values; r=edmorley

DONTBUILD (NPOTB)
This commit is contained in:
Gregory Szorc 2012-12-05 12:32:09 -08:00
Родитель 25de2d027e
Коммит 5a8419ee85
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -303,7 +303,7 @@ To see more help for a specific command, run:
if not result:
result = 0
assert isinstance(result, int)
assert isinstance(result, (int, long))
return result
except KeyboardInterrupt as ki: