[Checkins] SVN: zope.event/tags/3.4.1/ Tag 3.4.1

Dan Korostelev nadako at gmail.com
Tue Mar 3 15:42:35 EST 2009


Log message for revision 97459:
  Tag 3.4.1

Changed:
  A   zope.event/tags/3.4.1/
  D   zope.event/tags/3.4.1/README.txt
  A   zope.event/tags/3.4.1/README.txt
  D   zope.event/tags/3.4.1/setup.py
  A   zope.event/tags/3.4.1/setup.py
  D   zope.event/tags/3.4.1/src/zope/event/tests.py
  A   zope.event/tags/3.4.1/src/zope/event/tests.py

-=-
Deleted: zope.event/tags/3.4.1/README.txt
===================================================================
--- zope.event/trunk/README.txt	2009-03-03 20:00:37 UTC (rev 97457)
+++ zope.event/tags/3.4.1/README.txt	2009-03-03 20:42:35 UTC (rev 97459)
@@ -1,14 +0,0 @@
-**********
-zope.event
-**********
-
-The zope.event package provides a simple event system.  It provides:
-
-- An event publishing system
-
-- A very simple event-dispatching system on which more sophisticated
-  event dispatching systems can be built.  (For example, a type-based
-  event dispatching system that builds on zope.event can be found in
-  zope.component.
-
-.. contents::

Copied: zope.event/tags/3.4.1/README.txt (from rev 97458, zope.event/trunk/README.txt)
===================================================================
--- zope.event/tags/3.4.1/README.txt	                        (rev 0)
+++ zope.event/tags/3.4.1/README.txt	2009-03-03 20:42:35 UTC (rev 97459)
@@ -0,0 +1,12 @@
+**********
+zope.event
+**********
+
+The ``zope.event`` package provides a simple event system.  It provides:
+
+- An event publishing system
+
+- A very simple event-dispatching system on which more sophisticated
+  event dispatching systems can be built. For example, a type-based
+  event dispatching system that builds on ``zope.event`` can be found in
+  ``zope.component``.

Deleted: zope.event/tags/3.4.1/setup.py
===================================================================
--- zope.event/trunk/setup.py	2009-03-03 20:00:37 UTC (rev 97457)
+++ zope.event/tags/3.4.1/setup.py	2009-03-03 20:42:35 UTC (rev 97459)
@@ -1,53 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (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.
-#
-##############################################################################
-"""Setup for zope.event package
-
-$Id$
-"""
-
-import os
-from setuptools import setup, find_packages
-
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-name = 'zope.event'
-
-setup(
-    name=name,
-    version='3.4.1a1',
-    url='http://www.python.org/pypi/'+name,
-    license='ZPL 2.1',
-    description='Zope Event Publication',
-    author='Zope Corporation and Contributors',
-    author_email='zope3-dev at zope.org',
-    long_description=(
-        read('README.txt')
-        + '\n' +
-        'Detailed Documentation\n'
-        '**********************\n'
-        + '\n' +
-        read('src', 'zope', 'event', 'README.txt')
-        + '\n' +
-        'Download\n'
-        '**********************\n'
-        ),
-      packages=find_packages('src'),
-      package_dir={'': 'src'},
-      namespace_packages=['zope',],
-      include_package_data=True,
-      install_requires=['setuptools'],
-      zip_safe=False,
-      )

Copied: zope.event/tags/3.4.1/setup.py (from rev 97458, zope.event/trunk/setup.py)
===================================================================
--- zope.event/tags/3.4.1/setup.py	                        (rev 0)
+++ zope.event/tags/3.4.1/setup.py	2009-03-03 20:42:35 UTC (rev 97459)
@@ -0,0 +1,51 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (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.
+#
+##############################################################################
+"""Setup for zope.event package
+
+$Id$
+"""
+
+import os
+from setuptools import setup, find_packages
+
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(
+    name='zope.event',
+    version='3.4.1',
+    url='http://pypi.python.org/pypi/zope.event',
+    license='ZPL 2.1',
+    description='Very basic event publishing system',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    long_description=(
+        read('README.txt')
+        + '\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('src', 'zope', 'event', 'README.txt')
+        + '\n' +
+        'Download\n'
+        '********\n'
+        ),
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
+      namespace_packages=['zope',],
+      include_package_data=True,
+      install_requires=['setuptools'],
+      zip_safe=False,
+      )

Deleted: zope.event/tags/3.4.1/src/zope/event/tests.py
===================================================================
--- zope.event/trunk/src/zope/event/tests.py	2009-03-03 20:00:37 UTC (rev 97457)
+++ zope.event/tags/3.4.1/src/zope/event/tests.py	2009-03-03 20:42:35 UTC (rev 97459)
@@ -1,57 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (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.
-#
-##############################################################################
-"""Test the event system
-
-$Id$
-"""
-
-import os, doctest, new, unittest
-
-try:
-    DocFileSuite = doctest.DocFileSuite # >= Python 2.4.0a2
-except AttributeError:
-    # <= Python 2.4.0a1
-
-    def DocFileSuite(*paths):
-        """Utility to create doc tests from readme files
-
-        Eventually, this, or something like it, will be part of doctest
-        """
-        # It's not entirely obvious how to connection this single string
-        # with unittest.  For now, re-use the _utest() function that comes
-        # standard with doctest in Python 2.3.  One problem is that the
-        # error indicator doesn't point to the line of the doctest file
-        # that failed.
-        t = doctest.Tester(globs={'__name__': '__main__'})
-        suite = unittest.TestSuite()
-        dir = os.path.split(__file__)[0]
-        for path in paths:
-            path = os.path.join(dir, path)
-            source = open(path).read()
-            def runit(path=path, source=source):
-                doctest._utest(t, path, source, path, 0)
-            runit = new.function(runit.func_code, runit.func_globals, path,
-                                 runit.func_defaults, runit.func_closure)
-            f = unittest.FunctionTestCase(runit,
-                                          description="doctest from %s" % path)
-            suite.addTest(f)
-        return suite
-
-def test_suite():
-    return unittest.TestSuite((
-        DocFileSuite('README.txt'),
-        ))
-
-if __name__ == '__main__':
-    unittest.main(defaultTest='test_suite')

Copied: zope.event/tags/3.4.1/src/zope/event/tests.py (from rev 97458, zope.event/trunk/src/zope/event/tests.py)
===================================================================
--- zope.event/tags/3.4.1/src/zope/event/tests.py	                        (rev 0)
+++ zope.event/tags/3.4.1/src/zope/event/tests.py	2009-03-03 20:42:35 UTC (rev 97459)
@@ -0,0 +1,24 @@
+##############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (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.
+#
+##############################################################################
+"""Test the event system
+
+$Id$
+"""
+import unittest
+import doctest
+
+def test_suite():
+    return unittest.TestSuite((
+        doctest.DocFileSuite('README.txt'),
+        ))



More information about the Checkins mailing list