:
def strip_tags(self,tagged_or_chunked_text):
toks = tagged_or_chunked_text.split()
toks = filter(lambda x:'/' in x,toks)
toks = map(lambda x:x.split('/')[0],toks) ### Line 268
return ' '.join(to
Thanks xtian I thought that might be the problem as well, but the
program runs fine in both CPython and Jython. I played around with the
indenting for both snippets to no avail. Any more pointers?
Shidan
On 7/4/05, xtian <[EMAIL PROTECTED]> wrote:
> It sounds like both problems
It's capable of functional programming, somewhat, but it is highly
discouraged, from what I hear lambda, reduce, map and most other
higher order functions will be deprecated in Python 3.
On 7/25/05, Hank Fay <[EMAIL PROTECTED]> wrote:
>
> Python is capable of functional programming that would ma