Using the Python Interpreter as a Reference
Gregory Ewing
greg.ewing at canterbury.ac.nz
Mon Nov 28 15:40:01 EST 2011
Travis Parks wrote:
> I thinking tabs are
> out-of-date. Even the MAKE community wishes that the need for tabs
> would go away
The situation with make is a bit different, because it
*requires* tabs in certain places -- spaces won't do.
Python lets you choose which to use as long as you don't
mix them up, and I like it that way.
> let Parse = public static method (value: String)
> throws(FormatException UnderflowException OverflowException)
Checked exceptions? I fear you're repeating a huge mistake
going down that route...
--
Greg
More information about the Python-list
mailing list