[Zope-Checkins] SVN: Zope/branches/2.13/src/OFS/ObjectManager.py Wrap long lines.
Tres Seaver
tseaver at palladion.com
Thu Feb 9 16:49:06 UTC 2012
Log message for revision 124346:
Wrap long lines.
Changed:
U Zope/branches/2.13/src/OFS/ObjectManager.py
-=-
Modified: Zope/branches/2.13/src/OFS/ObjectManager.py
===================================================================
--- Zope/branches/2.13/src/OFS/ObjectManager.py 2012-02-09 16:46:11 UTC (rev 124345)
+++ Zope/branches/2.13/src/OFS/ObjectManager.py 2012-02-09 16:49:05 UTC (rev 124346)
@@ -222,7 +222,8 @@
# Look at all globally visible meta types.
for entry in getattr(Products, 'meta_types', ()):
- if ( (interfaces is not None) or (entry.get("visibility", None)=="Global") ):
+ if ((interfaces is not None) or
+ (entry.get("visibility", None)=="Global")):
external_candidates.append(entry)
# Filter the list of external candidates based on the
@@ -230,7 +231,7 @@
if interfaces is None:
interface_constrained_meta_types = external_candidates
else:
- interface_constrained_meta_types = []
+ interface_constrained_meta_types = icmt = []
for entry in external_candidates:
try:
eil = entry.get('interfaces',None)
@@ -238,7 +239,7 @@
for ei in eil:
for i in interfaces:
if ei is i or ei.extends(i):
- interface_constrained_meta_types.append(entry)
+ icmt.append(entry)
raise BreakoutException # only append 1ce
except BreakoutException:
pass
@@ -692,7 +693,8 @@
all_files = copy.copy(files)
for f in files:
- if hasattr(aq_base(f[1]), 'isPrincipiaFolderish') and f[1].isPrincipiaFolderish:
+ if (hasattr(aq_base(f[1]), 'isPrincipiaFolderish') and
+ f[1].isPrincipiaFolderish):
all_files.extend(findChildren(f[1]))
files = all_files
@@ -814,7 +816,8 @@
lst = []
for name, child in obj.objectItems():
- if hasattr(aq_base(child), 'isPrincipiaFolderish') and child.isPrincipiaFolderish:
+ if (hasattr(aq_base(child), 'isPrincipiaFolderish') and
+ child.isPrincipiaFolderish):
lst.extend(findChildren(child, dirname + obj.id + '/'))
else:
lst.append((dirname + obj.id + "/" + name, child))
More information about the Zope-Checkins
mailing list