[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter - __init__.py:1.10 setup.py:1.7

Martijn Pieters mj@zope.com
Wed, 14 Aug 2002 18:20:03 -0400


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

Modified Files:
	__init__.py setup.py 
Log Message:
Clean up indentation and trailing whitespace.


=== Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py 1.9 => 1.10 ===
--- Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py:1.9	Fri May  3 10:51:47 2002
+++ Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/__init__.py	Wed Aug 14 18:19:32 2002
@@ -1,5 +1,5 @@
 ##############################################################################
-# 
+#
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -8,7 +8,7 @@
 # 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,exceptions
@@ -26,11 +26,8 @@
     if not name in splitterNames and name:
         raise exceptions.RuntimeError, "No such splitter '%s'" % name
 
-    if not name: name = splitterNames[0] 
+    if not name: name = splitterNames[0]
     if not vars().has_key(name):
         exec( "from %s.%s import %s" % (name,name,name))
 
     return vars()[name]
-    
-
-


=== Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py 1.6 => 1.7 ===
--- Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py:1.6	Wed Jan  2 11:27:24 2002
+++ Zope/lib/python/Products/PluginIndexes/TextIndex/Splitter/setup.py	Wed Aug 14 18:19:32 2002
@@ -1,6 +1,6 @@
-#!/usr/bin/env python 
+#!/usr/bin/env python
 
-from distutils.core import setup,Extension 
+from distutils.core import setup,Extension
 import os,exceptions,commands,sys
 
 CFLAGS = []
@@ -14,7 +14,7 @@
     description = "Splitters for Zope 2.5",
     author = "Andreas Jung",
     author_email = "andreas@zope.com",
-    url = "http://www.zope.org/...",        
+    url = "http://www.zope.org/...",
     ext_modules=[
         Extension("ZopeSplitter",['ZopeSplitter/src/ZopeSplitter.c']), \
         Extension("ISO_8859_1_Splitter",['ISO_8859_1_Splitter/src/ISO_8859_1_Splitter.c']),   \