I've tried to implement function composition with nice syntax and here is what I've got:

from functools import partial

class _compfunc(partial):
    def __lshift__(self, y):
        f = lambda *args, **kwargs: self.func(y(*args, **kwargs)) 
        return _compfunc(f)

    def __rshift__(self, y):
        f = lambda *args, **kwargs: y(self.func(*args, **kwargs)) 
        return _compfunc(f)

def composable(f):
    return _compfunc(f)

@composable    
def f1(x):
    return x * 2

@composable
def f2(x):
    return  x + 3

@composable
def f3(x):
    return (-1) * x

print f1(2) #4
print f2(2) #5
print (f1 << f2 << f1)(2) #14
print (f3 >> f2)(2) #1
print (f2 >> f3)(2) #-5

It works fine with integers, but fails on lists/tuples:

@composable
def f4(a):
    a.append(0)

print f4([1, 2]) #None

Where is a mistake?

link|improve this question

50% accept rate
I assume that by "crushes" you mean "crashes"? And by "crashes" I assume you mean "throws an exception"? Also, if I run the exact code you posted, it works just fine. – porgarmingduod Feb 17 '10 at 9:17
1  
I fail to see how f4() isn't working as designed. Perhaps you have mistaken expectations. – Ignacio Vazquez-Abrams Feb 17 '10 at 9:18
Thanks, Ignacio. I've made a really stupid mistake. – si14 Feb 17 '10 at 9:28
feedback

1 Answer

up vote 3 down vote accepted

append does in-place addition, as Ignacio Vazquez-Abrams said (well, implied). Try:

@composable
def f4(a):
  return a + [0]
link|improve this answer
Thanks. My mistake is awful. – si14 Feb 17 '10 at 9:29
We're only human :) – badp Feb 17 '10 at 9:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.