示例#1
0
文件: append.py 项目: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, list, self.fun, options,
             din, dout)
示例#2
0
文件: ends-with.py 项目: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, (str, Symbol, Keyword), self.fun, options,
             din, dout)
示例#3
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, (collections.Sequence, collections.Mapping),
                          self.fun, options, din, dout)
示例#4
0
文件: values.py 项目: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, dict, lambda x: x.values(), options,
             din, dout)
示例#5
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, dict, self.fun, options, din, dout)
示例#6
0
文件: get.py 项目: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self,
         (collections.Sequence, collections.Mapping), self.fun, options,
         din, dout)
示例#7
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, (str, Symbol, Keyword), self.fun, options,
                          din, dout)
示例#8
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, dict, lambda x: x.keys(), options, din,
                          dout)