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