8000 gh-133490: Fix syntax highlighting for remote PDB by godlygeek · Pull Request #133494 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-133490: Fix syntax highlighting for remote PDB #133494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
May 6, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Print stdout in addition to stderr on failure
  • Loading branch information
godlygeek committed May 6, 2025
commit 0cdf9d3c5bad69a5d212a723b446840838c91c0a
6 changes: 4 additions & 2 deletions Lib/test/test_remote_pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1531,11 +1531,13 @@ def do_integration_test(self, client_stdin):

if process.returncode != 0:
print("server failed:")
print(stderr)
print(f"stdout:\n{stdout}")
print(f"stderr:\n{stderr}")

if attach_process.returncode != 0:
print("client failed:")
print(client_stderr)
print(f"stdout:\n{client_stdout}")
print(f"stderr:\n{client_stderr}")

self.assertEqual(process.returncode, 0)
self.assertEqual(attach_process.returncode, 0)
Expand Down
Loading
0