Esempio n. 1
0
File: append.py Progetto: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, list, self.fun, options,
             din, dout)
Esempio n. 2
0
File: ends-with.py Progetto: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, (str, Symbol, Keyword), self.fun, options,
             din, dout)
Esempio n. 3
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, (collections.Sequence, collections.Mapping),
                          self.fun, options, din, dout)
Esempio n. 4
0
File: values.py Progetto: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, dict, lambda x: x.values(), options,
             din, dout)
Esempio n. 5
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, dict, self.fun, options, din, dout)
Esempio n. 6
0
File: get.py Progetto: Roger/y
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self,
         (collections.Sequence, collections.Mapping), self.fun, options,
         din, dout)
Esempio n. 7
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, (str, Symbol, Keyword), self.fun, options,
                          din, dout)
Esempio n. 8
0
 def __init__(self, options, din, dout):
     TypeCommand.__init__(self, dict, lambda x: x.keys(), options, din,
                          dout)