[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - configuration.py:1.11

Guido van Rossum guido@python.org
Mon, 14 Apr 2003 14:03:19 -0400


Update of /cvs-repository/Zope3/src/zope/app/interfaces/services
In directory cvs.zope.org:/tmp/cvs-serv26480

Modified Files:
	configuration.py 
Log Message:
Make the three symbolic constants 8-bit strings.  They are not
intended to be translated or human-readable (except to the extent that
programmers are humans).


=== Zope3/src/zope/app/interfaces/services/configuration.py 1.10 => 1.11 ===
--- Zope3/src/zope/app/interfaces/services/configuration.py:1.10	Mon Mar 24 06:09:39 2003
+++ Zope3/src/zope/app/interfaces/services/configuration.py	Mon Apr 14 14:03:18 2003
@@ -24,9 +24,9 @@
 from zope.schema import Text, TextLine
 from zope.schema.interfaces import ITextLine
 
-Unregistered = u'Unregistered'
-Registered = u'Registered'
-Active = u'Active'
+Unregistered = 'Unregistered'
+Registered = 'Registered'
+Active = 'Active'
 
 class IConfigurationStatus(ITextLine):
     """The registration status of a configuration