#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 )
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 , 7 years ago
Description: | modified (diff) |
---|
comment:3 by , 7 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Thanks for the report, but I think we already discussed this and found no compelling reason to move to the
format()
syntax everywhere.