fix: IPython 9-only compatibility and color restoration - #73
Closed
tawsifazad23 wants to merge 2 commits into
Closed
fix: IPython 9-only compatibility and color restoration#73tawsifazad23 wants to merge 2 commits into
tawsifazad23 wants to merge 2 commits into
Conversation
Collaborator
I'll take another look and test this out later this week. |
Member
|
Subsumed by just-merged PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR updates ChatDBG’s Pdb integration to work cleanly with IPython 9.x (9.0–9.6).
Older IPython versions (<9) are no longer supported.
Problem
IPython 9 changed its internal debugger API:
self.color_scheme_table.active_colors(breaks color printing)context=parameter fromprint_stack_entry()These changes caused:
AttributeError: 'ChatDBG' object has no attribute 'color_scheme_table'TypeError: print_stack_entry() got an unexpected keyword argument 'context'Fix
color_scheme_tablewith new_resolve_colors()helper.print_stack_entry()without context kwarg.pyproject.toml→ipython>=9,<10.Validation
chatdbg -c continue boom.py→ works cleanly, color intactwhycommand functions normallyCHATDBG_NO_COLOR=1disables color safelyNotes
This officially drops IPython 8.x support to simplify maintenance.
Color output now relies on IPython’s native theming system.