summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-08-04 17:28:33 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-08-04 17:28:33 (GMT)
commita729daf2e43f3ffa2d1b3b6cd31491c840091e66 (patch)
treee4ef5a6afc55eeaf76db827fd5a948b334ca054b
parent09776b7afdc9a921669f26249dc5bce6f2558485 (diff)
downloadcpython-a729daf2e43f3ffa2d1b3b6cd31491c840091e66.zip
cpython-a729daf2e43f3ffa2d1b3b6cd31491c840091e66.tar.gz
cpython-a729daf2e43f3ffa2d1b3b6cd31491c840091e66.tar.bz2
Add encoding declaration.
-rw-r--r--Lib/test/test_sax.py2
-rw-r--r--Lib/test/test_unicode.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_sax.py b/Lib/test/test_sax.py
index acb7658..3db0189 100644
--- a/Lib/test/test_sax.py
+++ b/Lib/test/test_sax.py
@@ -1,4 +1,4 @@
-# regression test for SAX 2.0
+# regression test for SAX 2.0 -*- coding: iso-8859-1 -*-
# $Id$
from xml.sax import make_parser, ContentHandler, \
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py
index 2218dfd..028e97a 100644
--- a/Lib/test/test_unicode.py
+++ b/Lib/test/test_unicode.py
@@ -1,3 +1,4 @@
+# -*- coding: iso-8859-1 -*-
""" Test script for the Unicode implementation.
Written by Marc-Andre Lemburg (mal@lemburg.com).