[Zope-CVS] SVN: zpkgtools/trunk/zpkgsetup/package.py fix reference to the return type of create_extension()

Fred L. Drake, Jr. fred at zope.com
Fri Jul 16 17:44:06 EDT 2004


Log message for revision 26604:
  fix reference to the return type of create_extension()


Changed:
  U   zpkgtools/trunk/zpkgsetup/package.py


-=-
Modified: zpkgtools/trunk/zpkgsetup/package.py
===================================================================
--- zpkgtools/trunk/zpkgsetup/package.py	2004-07-16 21:20:05 UTC (rev 26603)
+++ zpkgtools/trunk/zpkgsetup/package.py	2004-07-16 21:44:06 UTC (rev 26604)
@@ -213,7 +213,7 @@
 
 
 def create_extension(section, pkgname, reldir):
-    """Create an `Extension` instance from a configuration section.
+    """Create an extension object from a configuration section.
 
     :Parameters:
       - `section`: Section object from the configuration file.
@@ -223,6 +223,8 @@
       - `reldir`: Directory in which the extension lives, relative to
         the top of the distribution, given in POSIX notation.
 
+    :rtype: `zpkgsetup.dist.ZPkgExtension`
+
     """
     kwargs = {}
     if pkgname:



More information about the Zope-CVS mailing list