Commit 1b0ef458 authored by Jeffrey Shell's avatar Jeffrey Shell

and fixed the getitems() function

parent 1e2e8179
"""Global definitions""" """Global definitions"""
__version__='$Revision: 1.18 $'[11:-2] __version__='$Revision: 1.19 $'[11:-2]
import sys, os import sys, os
from DateTime import DateTime from DateTime import DateTime
...@@ -167,6 +167,8 @@ def getitems(o,names): ...@@ -167,6 +167,8 @@ def getitems(o,names):
r=[] r=[]
for name in names: for name in names:
v=o[name] v=o[name]
r.append(v)
return r
########################################################################## ##########################################################################
...@@ -174,6 +176,9 @@ def getitems(o,names): ...@@ -174,6 +176,9 @@ def getitems(o,names):
# Log # Log
# #
# $Log: Globals.py,v $ # $Log: Globals.py,v $
# Revision 1.19 1998/11/13 20:23:45 jeffrey
# and fixed the getitems() function
#
# Revision 1.18 1998/11/13 20:22:34 jeffrey # Revision 1.18 1998/11/13 20:22:34 jeffrey
# added jim's "attrget", and Selector/MultipleSelector classes # added jim's "attrget", and Selector/MultipleSelector classes
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment