[Zope3-checkins] CVS: Zope3/src/zope/component - __init__.py:1.27
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sun Mar 28 18:42:24 EST 2004
Update of /cvs-repository/Zope3/src/zope/component
In directory cvs.zope.org:/tmp/cvs-serv23603/src/zope/component
Modified Files:
__init__.py
Log Message:
Remove not-needed backslashes.
=== Zope3/src/zope/component/__init__.py 1.26 => 1.27 ===
--- Zope3/src/zope/component/__init__.py:1.26 Thu Mar 18 11:08:52 2004
+++ Zope3/src/zope/component/__init__.py Sun Mar 28 18:42:23 2004
@@ -175,8 +175,8 @@
def getFactoriesFor(context, interface):
utils = getService(context, 'Utilities')
- return [(name, factory) \
- for iface, name, factory in utils.getRegisteredMatching(IFactory) \
+ return [(name, factory)
+ for iface, name, factory in utils.getRegisteredMatching(IFactory)
if interface in tuple(factory.getInterfaces())]
def getFactory(context, name):
More information about the Zope3-Checkins
mailing list