[Checkins] SVN: zc.ngi/trunk/ updated release info

Jim Fulton jim at zope.com
Wed May 30 17:07:26 EDT 2007


Log message for revision 76019:
  updated release info

Changed:
  U   zc.ngi/trunk/README.txt
  U   zc.ngi/trunk/setup.py

-=-
Modified: zc.ngi/trunk/README.txt
===================================================================
--- zc.ngi/trunk/README.txt	2007-05-30 21:05:38 UTC (rev 76018)
+++ zc.ngi/trunk/README.txt	2007-05-30 21:07:26 UTC (rev 76019)
@@ -13,3 +13,28 @@
 
 .. contents::
 
+Changes
+*******
+
+==================
+1.0.1 (2007-05-30)
+==================
+
+Bugs fixed:
+
+- Server startups sometimes failed with an error like::
+
+    warning: unhandled read event 
+    warning: unhandled write event 
+    warning: unhandled read event 
+    warning: unhandled write event 
+    ------ 
+    2007-05-30T22:22:43 ERROR zc.ngi.async.server listener error 
+    Traceback (most recent call last): 
+      File "asyncore.py", line 69, in read 
+        obj.handle_read_event() 
+      File "asyncore.py", line 385, in handle_read_event 
+        self.handle_accept() 
+      File "/zc/ngi/async.py", line 325, in handle_accept 
+        sock, addr = self.accept() 
+    TypeError: unpack non-sequence 

Modified: zc.ngi/trunk/setup.py
===================================================================
--- zc.ngi/trunk/setup.py	2007-05-30 21:05:38 UTC (rev 76018)
+++ zc.ngi/trunk/setup.py	2007-05-30 21:07:26 UTC (rev 76019)
@@ -4,17 +4,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-name = 'zc.ngi'
-setup(
-    name = name,
-    version = "1.0",
-    author = "Jim Fulton",
-    author_email = "jim at zope.com",
-    description = "Network Gateway Interface",
-    license = "ZPL 2.1",
-    keywords = "network",
-    url='http://www.python.org/pypi/'+name,
-    long_description=(
+long_description=(
         read('README.txt')
         + '\n' +
         'Detailed Documentation\n'
@@ -30,8 +20,22 @@
         + '\n' +
         'Download\n'
         '**********************\n'
-        ),
+        )
 
+open('documentation.txt', 'w').write(long_description)
+
+name = 'zc.ngi'
+setup(
+    name = name,
+    version = "1.0.1",
+    author = "Jim Fulton",
+    author_email = "jim at zope.com",
+    description = "Network Gateway Interface",
+    license = "ZPL 2.1",
+    keywords = "network",
+    url='http://www.python.org/pypi/'+name,
+    long_description=long_description,
+
     packages = find_packages('src'),
     include_package_data = True,
     package_dir = {'':'src'},



More information about the Checkins mailing list