PEP-0426 trivial copy changes

This commit is contained in:
Daniel Holth 2012-11-19 18:46:41 -05:00
parent fba6f8932b
commit 6549f8f705
1 changed files with 3 additions and 3 deletions

View File

@ -34,9 +34,9 @@ Metadata Files
The syntax defined in this PEP is for use with Python distribution
metadata files. The file format is a simple UTF-8 encoded Key: value
format with no maximum line length, followed by a blank line and an
arbitrary payload. The keys are case-insensitive. It is parseable by
the ``email`` module with an appropriate ``email.policy.Policy()``.
format with case-insensitive keys and no maximum line length, followed by
a blank line and an arbitrary payload. It is parseable by the ``email``
module with an appropriate ``email.policy.Policy()``.
When ``metadata`` is a Unicode string,
```email.parser.Parser().parsestr(metadata)`` is a serviceable parser.