Re: Find more than one error at once

2008-05-10 Thread John Machin
Diez B. Roggisch wrote: Joseph Turian schrieb: Is it possible to coax python to find more than one error at once? What kind of errors? Syntax-errors? Then use one of the python source code analyzers, such as pylint or pychecker. I don't know about pylint, but "PyChecker

Re: Find more than one error at once

2008-05-10 Thread Joseph Turian
On May 10, 8:13 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > What kind of errors? Syntax-errors? Then use one of the python source > code analyzers, such as pylint or pychecker. Great! -- http://mail.python.org/mailman/listinfo/python-list

Re: Find more than one error at once

2008-05-10 Thread Diez B. Roggisch
Joseph Turian schrieb: Is it possible to coax python to find more than one error at once? What kind of errors? Syntax-errors? Then use one of the python source code analyzers, such as pylint or pychecker. Diez -- http://mail.python.org/mailman/listinfo/python-list

Re: Find more than one error at once

2008-05-10 Thread Ben Finney
Joseph Turian <[EMAIL PROTECTED]> writes: > Is it possible to coax python to find more than one error at once? Definitely, write unit tests and run the whole suite http://www.python.org/doc/lib/module-unittest>. All errors found by your unit test suite will be reported. If you mea

Re: Find more than one error at once

2008-05-10 Thread David
On Sat, May 10, 2008 at 8:38 AM, Joseph Turian <[EMAIL PROTECTED]> wrote: > Is it possible to coax python to find more than one error at once? > > Thanks, > Joseph > -- > http://mail.python.org/mailman/listinfo/python-list > Sounds like you want to catch

Find more than one error at once

2008-05-09 Thread Joseph Turian
Is it possible to coax python to find more than one error at once? Thanks, Joseph -- http://mail.python.org/mailman/listinfo/python-list