[PATCH v2 8/8] git-remote-testpy: call print as a function

2013-01-17 Thread John Keeping
This is harmless in Python 2, which sees the parentheses as redundant grouping, but is required for Python 3. Since this is the only change required to make this script just run under Python 3 without needing 2to3 it seems worthwhile. The case of an empty print must be handled specially because

Re: [PATCH v2 8/8] git-remote-testpy: call print as a function

2013-01-17 Thread Sverre Rabbelier
Looks harmless enough. Acked-by: Sverre Rabbelier srabbel...@gmail.com On Thu, Jan 17, 2013 at 10:54 AM, John Keeping j...@keeping.me.uk wrote: This is harmless in Python 2, which sees the parentheses as redundant grouping, but is required for Python 3. Since this is the only change required