Tagged Questions
7
votes
7answers
2k views
Python implementation of Parsec?
I recently wrote a parser in Python using Ply (it's a python reimplementation of yacc). When I was almost done with the parser I discovered that the grammar I need to parse requires me to do some ...
6
votes
2answers
99 views
Does this combinator have a name?
This function f accepts an argument list and returns another callable with the same argument list, so that other functions can be applied to it.
from operator import add, mul
def f(*a, **kw):
...
2
votes
1answer
170 views
U combinator on a fibonacci : how would you translate this code to python?
I am trying to learn about combinators and I am having trouble understand the example given at (Y overriding self-application). I think I am beginning to grasp the concept but I am still far from ...