diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-06 10:06:51 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-06 10:06:51 -0700 |
commit | 45c7514de406d9ed84e46d80500fb4ac87a94ea8 (patch) | |
tree | bc4b034eb23a7688ce129450c3d6547b1151d7d6 | |
parent | 582282b7d08be223b2d356db8bf3f9b7699aca4b (diff) | |
parent | cbef66d7111624381eba9c4cf734e4017f4d7c3f (diff) | |
download | cpython-git-45c7514de406d9ed84e46d80500fb4ac87a94ea8.tar.gz |
merge 3.5 (#27969)
-rw-r--r-- | Lib/test/test_gdb.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 9751b056c1..09bafbdd93 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -24,6 +24,7 @@ def get_gdb_version(): try: proc = subprocess.Popen(["gdb", "-nx", "--version"], stdout=subprocess.PIPE, + stderr=subprocess.PIPE, universal_newlines=True) with proc: version = proc.communicate()[0] |