Opened 15 years ago
Closed 15 years ago
#15609 closed (fixed)
Respect PEP 3109
| Reported by: | Daniel Duan | Owned by: | nobody |
|---|---|---|---|
| Component: | Uncategorized | Version: | dev |
| Severity: | Keywords: | PEP | |
| Cc: | Triage Stage: | Ready for checkin | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
Tho porting to Python 3 has not started yet, there're things to be done without affecting the current support for Python (>2.4).
As mentioned in PEP 3109, one of Python's guiding maxims is "there should be one -- and preferably only one -- obvious way to do it". Specifically, raising exceptions with a message should be done in the ONE TRUE WAY since Python 1.5, as forced by Python 3:
raise E(V)
All this patch does is to respect this principle.
Attachments (1)
Change History (3)
by , 15 years ago
| Attachment: | respect_pep3109.patch added |
|---|
comment:1 by , 15 years ago
| Triage Stage: | Unreviewed → Ready for checkin |
|---|
Note:
See TracTickets
for help on using tickets.
No need to quote the Zen. This is a PEP 8 recommendation:
When raising an exception, use "raise ValueError('message')" instead of the older form "raise ValueError, 'message'".