Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#28427 closed Cleanup/optimization (wontfix)

Setup.py uses old % formatting

Reported by: Joseph Bywater Owned by: nobody
Component: Packaging Version: 1.11
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description (last modified by Joseph Bywater)

The setup.py file uses the old % form of formatting strings rather than the newer, better way of using the format function string.format()
Although it is not causing any issues, I believe that it should be updated to be more modern.

This issue is on line 91.

Is this intentional (for compatibility) or has it just not needed to be changed so it hasn't been?

Change History (2)

comment:1 by Joseph Bywater, 7 years ago

Description: modified (diff)

comment:3 by Claude Paroz, 7 years ago

Resolution: wontfix
Status: newclosed

Thanks for the report, but I think we already discussed this and found no compelling reason to move to the format() syntax everywhere.

Note: See TracTickets for help on using tickets.
Back to Top