|
|
-
Re: Jython 'import re' problemRussell Jurney 2013-01-29, 19:14
This was resolve by https://issues.apache.org/jira/browse/PIG-2665 , HOLLA!
0.11 works :) On Tue, Jan 29, 2013 at 9:10 AM, Russell Jurney <[EMAIL PROTECTED]>wrote: > Offending code: > > @outputSchema("token:chararray") > def remove_punctuation(self, token): > punctuation = re.compile(r'[-.@&$#`\'?!,></\\":;()|]') > words = list() > word = punctuation.sub("", token) > if word != "": > return word > > Error: > > ImportError: No module named re > > > Any ideas? > > -- > Russell Jurney twitter.com/rjurney [EMAIL PROTECTED] datasyndrome. > com > -- Russell Jurney twitter.com/rjurney [EMAIL PROTECTED] datasyndrome.com |