Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
534db4e1
Commit
534db4e1
authored
Apr 23, 2010
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #8495: test_gdb uses replace error handler when decoding utf8 output
parent
4d078046
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Lib/test/test_gdb.py
Lib/test/test_gdb.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-2
No files found.
Lib/test/test_gdb.py
View file @
534db4e1
...
...
@@ -59,7 +59,7 @@ class DebuggerTests(unittest.TestCase):
out, err = subprocess.Popen(
args, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
).communicate()
return out.decode('
utf
-
8
'
), err.decode('
utf
-
8
')
return out.decode('
utf
-
8
'
, '
replace
'), err.decode('
utf
-
8
', '
replace
')
def get_stack_trace(self, source=None, script=None,
breakpoint=BREAKPOINT_FN,
...
...
Misc/NEWS
View file @
534db4e1
...
...
@@ -1142,8 +1142,8 @@ Tests
- Issue #8108: test_ftplib's non-blocking SSL server now has proper handling
of SSL shutdowns.
- Issues #8279, #8330, #8437, #8480
: Fix test_gdb failures, patch written by
Dave Malcolm
- Issues #8279, #8330, #8437, #8480
, #8495: Fix test_gdb failures, patch
written by
Dave Malcolm
- Issue #3864: Skip three test_signal tests on freebsd6 because they fail
if any thread was previously started, most likely due to a platform bug.
...
...
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