Python Forum

Full Version: Debugger Font Size
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can I change the font size in the Python Debugger? If so how?
Python doesn't have a debugger, so no, you can't.
do you mean pdb, or the PyCharm debugger or something else?

if pdb, yu can get a text file of the doc by running the following (enter one line at a time)
from an interactive python session:

λ python
>>> import pdb
>>> import sys
>>> sys.stdout = open('pdb_doc.txt', 'w')
>>> help('pdb')
>>> sys.stdout.close()
>>> quit()
The text file pdb_doc.txt will now contain a copy of the help
(Jul-18-2017, 02:36 PM)nilamo Wrote: [ -> ]Python doesn't have a debugger, so no, you can't.
Hmm pdb — The Python Debugger.
Quote:Can I change the font size in the Python Debugger? If so how?
IPython pdb
Quote:which features tab completion, syntax highlighting, better tracebacks,
better introspection with the same interface as the pdb module.
For Windows use cmder(change font size bye using mouse),Linux i like Fish.