[Zope3-checkins] CVS: Zope3/src/zope/publisher/interfaces - http.py:1.11

Barry Warsaw barry@wooz.org
Tue, 25 Mar 2003 09:32:51 -0500


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

Modified Files:
	http.py 
Log Message:
IHTTPRequest:

    getLocale(): Method to return the _locale -- Note this will change
    soon.  locale should be a property/field.



=== Zope3/src/zope/publisher/interfaces/http.py 1.10 => 1.11 ===
--- Zope3/src/zope/publisher/interfaces/http.py:1.10	Fri Mar  7 19:51:53 2003
+++ Zope3/src/zope/publisher/interfaces/http.py	Tue Mar 25 09:32:51 2003
@@ -186,6 +186,9 @@
         and POST in the case of browser requests) and XML-RPC methods.
         """
 
+    def getLocale():
+        """Return the locale object associated with this request."""
+
 
 class IHTTPCredentials(Interface):