The default colors of pydoc are truly horrendous! Has anyone written a
_pydoc.css file to produce something reasonable?
(running 3.6 on OpenSuse 15.1)
Ian
--
*** To reply by e-mail, make w single in address **
--
https://mail.python.org/mailman/listinfo/python-list
On Sun, 25 Oct 2020 12:14:52 +0100, Maxime S wrote:
> Hi,
>
> You can use the trace module for that:
> https://docs.python.org/3.8/library/trace.html
>
> Personally I tend to put print statement at strategic places instead, I
> find that easier to analyse than a full trace but YMMV.
>
> Maxime
On 2020-10-22 23:35:21 -0700, Julio Di Egidio wrote:
> On Friday, 23 October 2020 07:36:39 UTC+2, Greg Ewing wrote:
> > On 23/10/20 2:13 pm, Julio Di Egidio wrote:
> > > I am now thinking whether I could achieve the "standard"
> > > behaviour via another approach, say with decorators, somehow
> >
> On 23 Oct 2020, at 17:52, John Pote wrote:
>
>
> On 23/10/2020 05:47, Grant Edwards wrote:
>>
>>> I think that commercial desktop applications with a python
>>> compatible GUI would likely use QT or a Python binding thereof.
>> Agreed. If you want to improve you "hirability" for GUI applic
Yes, I have been doing this already. I include the line number to help me
find, or search for, the location of the print statement. Unfortunately, it
requires a keen understanding in which the program has progressed in order to
trace.
A printout of every line number executed could help.
Hi,
You can use the trace module for that:
https://docs.python.org/3.8/library/trace.html
Personally I tend to put print statement at strategic places instead, I
find that easier to analyse than a full trace but YMMV.
Maxime
Le dim. 25 oct. 2020 à 01:25, Steve a écrit :
> This would seriousl