[Checkins] SVN: Zope/branches/2.12/ - LP #143261: The (very old-fashioned) Zope2.debug interactive request

Jens Vagelpohl jens at dataflake.org
Tue May 25 07:58:16 EDT 2010


Log message for revision 112687:
  - LP #143261: The (very old-fashioned) Zope2.debug interactive request
    debugger still referred to the toplevel module ``Zope``, which was
    renamed to ``Zope2`` a long time ago.
  

Changed:
  U   Zope/branches/2.12/doc/CHANGES.rst
  U   Zope/branches/2.12/src/Zope2/__init__.py

-=-
Modified: Zope/branches/2.12/doc/CHANGES.rst
===================================================================
--- Zope/branches/2.12/doc/CHANGES.rst	2010-05-25 11:57:39 UTC (rev 112686)
+++ Zope/branches/2.12/doc/CHANGES.rst	2010-05-25 11:58:16 UTC (rev 112687)
@@ -11,6 +11,10 @@
 Bugs Fixed
 ++++++++++
 
+- LP #143261: The (very old-fashioned) Zope2.debug interactive request
+  debugger still referred to the toplevel module ``Zope``, which was 
+  renamed to ``Zope2`` a long time ago.
+
 - LP #142874: Naming objects ``URL`` or ``URL1`` broke several ZMI
   views.
 

Modified: Zope/branches/2.12/src/Zope2/__init__.py
===================================================================
--- Zope/branches/2.12/src/Zope2/__init__.py	2010-05-25 11:57:39 UTC (rev 112686)
+++ Zope/branches/2.12/src/Zope2/__init__.py	2010-05-25 11:58:16 UTC (rev 112687)
@@ -55,7 +55,7 @@
     """Utility to try a Zope request using the interactive interpreter"""
     startup()
     import ZPublisher
-    return ZPublisher.test('Zope', *args, **kw)
+    return ZPublisher.test('Zope2', *args, **kw)
 
 from Zope2.Startup.run import configure
 



More information about the checkins mailing list