From: R David Murray Date: Sun, 27 May 2012 16:39:54 +0000 (-0400) Subject: Add '__all__' to _encoded_words and mark QByteMap as private. X-Git-Tag: v3.3.0a4~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36432ea783a26cfbaecb05babb69ee31c00fe150;p=python Add '__all__' to _encoded_words and mark QByteMap as private. --- diff --git a/Lib/email/_encoded_words.py b/Lib/email/_encoded_words.py index 01fe42f5f3..e9f6e20bd7 100644 --- a/Lib/email/_encoded_words.py +++ b/Lib/email/_encoded_words.py @@ -46,6 +46,16 @@ import functools from string import ascii_letters, digits from email import errors +__all__ = ['decode_q', + 'encode_q', + 'decode_b', + 'encode_b', + 'len_q', + 'len_b', + 'decode', + 'encode', + ] + # # Quoted Printable # @@ -60,7 +70,7 @@ def decode_q(encoded): # dict mapping bytes to their encoded form -class QByteMap(dict): +class _QByteMap(dict): safe = b'-!*+/' + ascii_letters.encode('ascii') + digits.encode('ascii') @@ -71,7 +81,7 @@ class QByteMap(dict): self[key] = "={:02X}".format(key) return self[key] -_q_byte_map = QByteMap() +_q_byte_map = _QByteMap() # In headers spaces are mapped to '_'. _q_byte_map[ord(' ')] = '_'