Python Hall of Shame: Difference between revisions
From YM2149.org
Jump to navigationJump to search
(Created page with "== roman == Lib for converting to and from roman numerals, riddled with examples of how not to write software. * https://github.com/zopefoundation/roman * strict coding standards ineffective at filtering out bad code, though perhaps they've done enough to facilitate fixing forward * at least there are tests, so we can refactor with confidence * ... Category:Programming") |
No edit summary |
||
Line 1: | Line 1: | ||
== roman == | == roman == | ||
Lib for converting to and from roman numerals, riddled with examples of how not to write software. | Lib for converting to and from roman numerals, riddled with examples of how at a granular level not to write software. | ||
* https://github.com/zopefoundation/roman | * https://github.com/zopefoundation/roman |
Revision as of 10:12, 29 January 2025
roman
Lib for converting to and from roman numerals, riddled with examples of how at a granular level not to write software.
- https://github.com/zopefoundation/roman
- strict coding standards ineffective at filtering out bad code, though perhaps they've done enough to facilitate fixing forward
- at least there are tests, so we can refactor with confidence
- ...