[Zope3-checkins] CVS: Zope3/src/zope/publisher - base.py:1.7

Sidnei da Silva sidnei@x3ng.com.br
Thu, 22 May 2003 09:59:26 -0400


Update of /cvs-repository/Zope3/src/zope/publisher
In directory cvs.zope.org:/tmp/cvs-serv4564/src/zope/publisher

Modified Files:
	base.py 
Log Message:
Slowly getting there. Created a new HTTPTestCase base class for functional tests. Added a few functional tests for DAV and the DC namespace. Still need to solve the minidom issue.

=== Zope3/src/zope/publisher/base.py 1.6 => 1.7 ===
--- Zope3/src/zope/publisher/base.py:1.6	Mon Apr 28 09:14:21 2003
+++ Zope3/src/zope/publisher/base.py	Thu May 22 09:58:55 2003
@@ -126,8 +126,10 @@
 
     def items(self):
         return self.__map.items()
+
     def values(self):
         return self.__map.values()
+
     def __len__(self):
         return len(self.__map)