From: Éric Araujo Date: Thu, 18 Aug 2011 22:53:04 +0000 (+0200) Subject: Remove class that was only useful with Sphinx autodoc X-Git-Tag: v3.3.0a1~1674^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=55b9fe232df1530403b3d79286f840dd1030f633;p=thirdparty%2FPython%2Fcpython.git Remove class that was only useful with Sphinx autodoc --- diff --git a/Lib/packaging/metadata.py b/Lib/packaging/metadata.py index 53d91f745156..104600b54e98 100644 --- a/Lib/packaging/metadata.py +++ b/Lib/packaging/metadata.py @@ -182,14 +182,6 @@ _UNICODEFIELDS = ('Author', 'Maintainer', 'Summary', 'Description') _MISSING = object() -class NoDefault: - """Marker object used for clean representation""" - def __repr__(self): - return '' - -_MISSING = NoDefault() - - class Metadata: """The metadata of a release.