Re: [Pydev-users] Jython and re module

2008-01-31 Thread DOUTCH GARETH-GDO003
That's fixed it. Thanks Fabio. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fabio Zadrozny Sent: 31 January 2008 10:20 To: pydev-users@lists.sourceforge.net Subject: Re: [Pydev-users] Jython and re module Oops, just saw that it's in jyth

Re: [Pydev-users] Jython and re module

2008-01-31 Thread Fabio Zadrozny
Oops, just saw that it's in jython... well, putting it in the forced builtins should solve it anyways (and when jython is updated to a more recent version of that module, that may not be needed anymore). Cheers, Fabio - This

Re: [Pydev-users] Jython and re module

2008-01-31 Thread DOUTCH GARETH-GDO003
Sorry, this is Jython 2.2.1, I should have said that. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fabio Zadrozny Sent: 31 January 2008 10:19 To: pydev-users@lists.sourceforge.net Subject: Re: [Pydev-users] Jython and re module > When I import

Re: [Pydev-users] Jython and re module

2008-01-31 Thread Fabio Zadrozny
> When I import the regular expression module > > import re > > and use re.split() or re.findall() > > I get "undefined variable from import". Although re.compile() is fine. > > Also doing re. and pressing CTRL+SPACE gives a drop down list that contains > > __all__ > module > name > sre > sys > > W

[Pydev-users] Jython and re module

2008-01-31 Thread DOUTCH GARETH-GDO003
Hi, When I import the regular expression module import re and use re.split() or re.findall() I get "undefined variable from import". Although re.compile() is fine. Also doing re. and pressing CTRL+SPACE gives a drop down list that contains __all__ module name sre sys Which is not wha