[Zodb-checkins] CVS: Zope/lib/Components/ExtensionClass - setup.py:1.5

Martijn Pieters mj@zope.com
Wed, 14 Aug 2002 17:25:19 -0400


Update of /cvs-repository/Zope/lib/Components/ExtensionClass
In directory cvs.zope.org:/tmp/cvs-serv10880

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


=== Zope/lib/Components/ExtensionClass/setup.py 1.4 => 1.5 ===
--- Zope/lib/Components/ExtensionClass/setup.py:1.4	Mon Jun 10 18:48:46 2002
+++ Zope/lib/Components/ExtensionClass/setup.py	Wed Aug 14 17:24:48 2002
@@ -3,14 +3,14 @@
 #
 # Copyright (c) 2001, 2002 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
-# 
+#
 ##############################################################################
 """Support for Python classes implemented in C
 
@@ -18,16 +18,16 @@
 extension types more class-like.  Classes can be developed in an
 extension language, such as C or C++, and these classes can be
 treated like other python classes:
-  
+
 - They can be sub-classed in python,
-  
+
 - They provide access to method documentation strings, and
-  
+
 - They can be used to directly create new instances.
-  
+
 An example class shows how extension classes are implemented and how
 they differ from extension types.
-  
+
 Extension classes provide additional extensions to class and
 instance semantics, including:
 
@@ -41,11 +41,11 @@
 
 - A protocol for class initialization that supports execution of a
   special '__class_init__' method after a class has been
-  initialized. 
-  
+  initialized.
+
 Extension classes illustrate how the Python class mechanism can be
 extended and may provide a basis for improved or specialized class
-models. 
+models.
 """
 
 # Setup file for ExtensionClass
@@ -79,7 +79,7 @@
 ThreadLock = Extension(name = 'ThreadLock',
                        sources = ['src/ThreadLock.c'])
 
-setup(name = "ExtensionClass", 
+setup(name = "ExtensionClass",
       version = "1.3",
       description = "Support for Python classes implemented in C",
       maintainer = "Digital Creations",