From 65453903e29cf7e2ba98abc4abac307538c1f9cb Mon Sep 17 00:00:00 2001 From: Sasha Goldshtein Date: Sun, 26 Mar 2017 13:06:51 +0000 Subject: [PATCH] syscount: Use zip_longest for Python 3 compatibility --- tools/syscount.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/syscount.py b/tools/syscount.py index 4f0e828..5bc3f34 100755 --- a/tools/syscount.py +++ b/tools/syscount.py @@ -10,12 +10,17 @@ # 15-Feb-2017 Sasha Goldshtein Created this. from bcc import BPF -from itertools import izip_longest from time import sleep, strftime import argparse +import itertools import subprocess import sys +if sys.version_info.major < 3: + izip_longest = itertools.izip_longest +else: + izip_longest = itertools.zip_longest + # # Syscall table for Linux x86_64, not very recent. # Automatically generated from strace/linux/x86_64/syscallent.h using the -- 2.7.4