diff options
| author | Tarek Ziade <tarek@ziade.org> | 2010-03-04 20:42:22 +0100 |
|---|---|---|
| committer | Tarek Ziade <tarek@ziade.org> | 2010-03-04 20:42:22 +0100 |
| commit | f29b67bd08d4b250ecc742729411c00340cc5311 (patch) | |
| tree | 2160cc118acf37fba8c8449ecbd0fdb0a2d7be06 /src/distutils2/errors.py | |
| parent | 9e6a32735e26789d1f191f3e4f2ab70893fb4c03 (diff) | |
| download | disutils2-f29b67bd08d4b250ecc742729411c00340cc5311.tar.gz | |
refactored DistributionMetadata so it also recognizes 1.1. It's much cleaner that way even if 1.1 is never used
Diffstat (limited to 'src/distutils2/errors.py')
| -rw-r--r-- | src/distutils2/errors.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/distutils2/errors.py b/src/distutils2/errors.py index 1f104be..7cec44a 100644 --- a/src/distutils2/errors.py +++ b/src/distutils2/errors.py @@ -86,3 +86,10 @@ class LinkError(CCompilerError): class UnknownFileError(CCompilerError): """Attempt to process an unknown file type.""" + +class MetadataConflictError(DistutilsError): + """Attempt to read or write metadata fields that are conflictual.""" + +class MetadataUnrecognizedVersionError(DistutilsError): + """Unknown metadata version number.""" + |
