commit | b8cc6ae5a1e8e548c8c2619e20fb1898ab2521f5 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Oct 08 14:13:43 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Oct 08 14:13:43 1996 +0000 |
tree | 72e5d9cf750cb8eb7f6196db295adabbf126c340 | |
parent | 6592f88fc0598aa465f214de0dd4eb5c58229976 [diff] [blame] |
The usual... Sigh...
diff --git a/Lib/dos-8x3/mimetool.py b/Lib/dos-8x3/mimetool.py index baf9379..eadc11a 100755 --- a/Lib/dos-8x3/mimetool.py +++ b/Lib/dos-8x3/mimetool.py
@@ -67,6 +67,14 @@ return rfc822.unquote(p[n:]) return None + def getparamnames(self): + result = [] + for p in self.plist: + i = string.find(p, '=') + if i >= 0: + result.append(string.lower(p[:i])) + return result + def getencoding(self): if self.encodingheader == None: return '7bit'