Return the hand-maintained prelude fragment, or empty if absent.
(path)
| 44 | |
| 45 | |
| 46 | def read_prelude(path): |
| 47 | """Return the hand-maintained prelude fragment, or empty if absent.""" |
| 48 | return path.read_text(encoding="utf-8").rstrip() + "\n" if path.exists() else "" |
| 49 | |
| 50 | |
| 51 | def is_byte_param(name, prop): |