Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Debugger Font Size
#1
Can I change the font size in the Python Debugger? If so how?
Reply
#2
Python doesn't have a debugger, so no, you can't.
Reply
#3
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
Reply
#4
(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.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Python code for alignment and font size 1418 0 425 Jan-14-2024, 03:56 AM
Last Post: 1418
  Debugger azizrasul 6 1,344 Nov-02-2022, 09:46 PM
Last Post: azizrasul
  Idle debugger pops up Run.py - library? fred1232 1 1,721 Jul-27-2021, 01:01 AM
Last Post: Larz60+
  VS Code debugger using wrong Python environment topfox 0 2,636 Jun-09-2021, 10:01 AM
Last Post: topfox
  Load external font and does not show font in the window ATARI_LIVE 16 8,626 Feb-05-2021, 10:36 PM
Last Post: EthanPayne
  Using Spyder Full Screen Debugger ErnestTBass 0 1,535 Aug-20-2020, 08:17 PM
Last Post: ErnestTBass
  Debugger Disabled erictan 1 4,118 Apr-30-2020, 02:17 PM
Last Post: pyzyx3qwerty
  pydev debugger: process 3442 is connecting when I run a program with ALT+COMMAND+R Seneca260 1 2,736 Jan-06-2020, 06:57 PM
Last Post: micseydel
  size of set vs size of dict zweb 0 2,223 Oct-11-2019, 01:32 AM
Last Post: zweb
  Python Debugger Suggestions nilamo 3 3,197 Oct-22-2018, 07:05 PM
Last Post: jdjeffers

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020