예제 #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)