Python Forum
Debugger Font Size - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Debugger Font Size (/thread-4034.html)



Debugger Font Size - pythonck - Jul-18-2017

Can I change the font size in the Python Debugger? If so how?


RE: Debugger Font Size - nilamo - Jul-18-2017

Python doesn't have a debugger, so no, you can't.


RE: Debugger Font Size - Larz60+ - Jul-18-2017

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


RE: Debugger Font Size - snippsat - Jul-18-2017

(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.