Python Hall of Shame

From YM2149.org
Revision as of 10:03, 29 January 2025 by Andrzej (talk | contribs) (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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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
  • ...