On Fri, Dec 5, 2014 at 11:49 AM, Aahan Krish <kr...@aahan.me> wrote:
>
> Hello Ian,
>
> So, wrt Q2, what you are saying is, the following would cause issues in
Python 3?
>
>     int f(int x,
>     ......int y) {
>     --->return g(x,
>     --->.........y);
>     }
>
> Where:
>
> ---> for tabs (used for indentation)
> .... for spaces (used for alignment)

That example should be fine, I think (if it were actually Python  and not
C, that is). The second line is a continuation of the first line, so the
preceding whitespace isn't indentation and doesn't matter. Likewise for the
fourth line. So the only line with any actual indentation there is the
third line.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to