Details
Details
- Reviewers
pulkit - Group Reviewers
hg-reviewers - Commits
- rHG958b4c506d3a: tests: ensure print() statements in test-extension.t all flush
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Comment Actions
This one leads to SyntaxError on Python 2. I suspect this is because of missing 'from future import print_function' but I am also confused how it works right now then.
Comment Actions
print() in Python 2.7 works. It just doesn't support the extra arguments unless you from __future__ import print_function.