[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests - testUnicodeSplitter.py:1.6

Philipp von Weitershausen philikon@philikon.de
Wed, 30 Jul 2003 18:17:17 -0400


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests
In directory cvs.zope.org:/tmp/cvs-serv13013/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests

Modified Files:
	testUnicodeSplitter.py 
Log Message:
Put an encoding on top of files that use non-ASCII characters to make
DeprecationWarnings in Python 2.3 go away. See
http://www.python.org/peps/pep-0263.html for more information.


=== Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests/testUnicodeSplitter.py 1.5 => 1.6 ===
--- Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests/testUnicodeSplitter.py:1.5	Wed Aug 14 18:19:32 2002
+++ Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/UnicodeSplitter/tests/testUnicodeSplitter.py	Wed Jul 30 18:16:43 2003
@@ -1,5 +1,20 @@
+# -*- coding: ISO-8859-1 -*-
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+
 import os,sys,unittest
-from Products.PluginIndexes.TextIndex.Splitter.UnicodeSplitter.UnicodeSplitter import UnicodeSplitter
+from Products.PluginIndexes.TextIndex.Splitter.UnicodeSplitter.UnicodeSplitter \
+     import UnicodeSplitter
 
 class UnicodeSplitterTests(unittest.TestCase):