aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/encoding.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/encoding.py')
-rw-r--r--libbe/encoding.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/libbe/encoding.py b/libbe/encoding.py
index 4af864e..fd513b5 100644
--- a/libbe/encoding.py
+++ b/libbe/encoding.py
@@ -14,11 +14,17 @@
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+"""
+Support input/output/filesystem encodings (e.g. UTF-8).
+"""
+
import codecs
import locale
import sys
import doctest
+
ENCODING = None # override get_encoding() output by setting this
def get_encoding():