Jul-18-2017, 01:40 PM
Can I change the font size in the Python Debugger? If so how?
|
Debugger Font Size
|
|
Jul-18-2017, 01:40 PM
Can I change the font size in the Python Debugger? If so how?
Jul-18-2017, 02:36 PM
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,For Windows use cmder(change font size bye using mouse),Linux i like Fish. |
|
|