Changes between Initial Version and Version 1 of Ticket #13084, comment 10


Ignore:
Timestamp:
Aug 13, 2017, 12:09:56 AM (7 years ago)
Author:
Mark Spieth
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13084, comment 10

    initial v1  
    11print is a function in py 2 with future and 3. You have identified a bug. % should be inside the () in all cases.
    22py2 original syntax allowed many things including no (). note that % is a format operator on a string. works in py2 since () returns the string and in py3 its part of the function. bugger that I didnt notice this before. legacy I missed.
     3updated pull request