On Jul 8, 1:53 pm, bsneddon <[EMAIL PROTECTED]> wrote:
> On Jul 8, 10:59 am, [EMAIL PROTECTED] (John J. Lee) wrote:
>
>
>
> > David <[EMAIL PROTECTED]> writes:
> > > Is there a pretty printing utility for Python, something like Tidy for
> > > HTML?
>
> > > That will change:
>
> > > xp=self.
On Jul 8, 10:59 am, [EMAIL PROTECTED] (John J. Lee) wrote:
> David <[EMAIL PROTECTED]> writes:
> > Is there a pretty printing utility for Python, something like Tidy for
> > HTML?
>
> > That will change:
>
> > xp=self.uleft[0]+percentx*(self.xwidth)
>
> > To:
>
> > xp = self.uleft[0
David <[EMAIL PROTECTED]> writes:
> Is there a pretty printing utility for Python, something like Tidy for
> HTML?
>
> That will change:
>
> xp=self.uleft[0]+percentx*(self.xwidth)
>
> To:
>
> xp = self.uleft[0] + percentx * (self.xwidth)
>
> And other formatting issues.
Googled a
Daniel:
> On Sat, 07 Jul 2007 21:35:40 +0300, David <[EMAIL PROTECTED]>
> wrote:
>> Is there a pretty printing utility for Python, something like Tidy for
>> HTML?
>
> Why not just write python as it should be written?
Oh, you write all the code you use yourself?
It's relatively common that you h
On Sat, 07 Jul 2007 21:35:40 +0300, David <[EMAIL PROTECTED]>
wrote:
>
> All,
>
> Is there a pretty printing utility for Python, something like Tidy for
> HTML?
>
> That will change:
>
> xp=self.uleft[0]+percentx*(self.xwidth)
>
> To:
>
> xp = self.uleft[0] + percentx * (self.xwi