Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
6b511bd9
Commit
6b511bd9
authored
Oct 27, 2017
by
yonghong-song
Committed by
GitHub
Oct 27, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1413 from r4f4/fix-exception-py3
Fix exception handling in python3
parents
fbbe6d6e
6be6e2c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/python/bcc/table.py
src/python/bcc/table.py
+2
-2
No files found.
src/python/bcc/table.py
View file @
6b511bd9
...
...
@@ -527,7 +527,7 @@ class PerfEventArray(ArrayBase):
def
raw_cb_
(
_
,
data
,
size
):
try
:
callback
(
cpu
,
data
,
size
)
except
IOError
,
e
:
except
IOError
as
e
:
if
e
.
errno
==
errno
.
EPIPE
:
exit
()
else
:
...
...
@@ -535,7 +535,7 @@ class PerfEventArray(ArrayBase):
def
lost_cb_
(
lost
):
try
:
lost_cb
(
lost
)
except
IOError
,
e
:
except
IOError
as
e
:
if
e
.
errno
==
errno
.
EPIPE
:
exit
()
else
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment