>> exec "import %s as parsetab" % module
>> File "<string>", line 1, in <module>
>> java.lang.ClassFormatError: Invalid method Code length 1068688 in
The relevant code is
if sys.version_info[0] < 3:
exec("import %s as parsetab" % module)
else:
env = { }
exec("import %s as parsetab" % module, env, env)
parsetab = env['parsetab']
I'm not using jython so I can't test this, but try changing that code
to
parsetab = __import__(module)
Andrew
[email protected]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"ply-hack" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ply-hack?hl=en
-~----------~----~----~----~------~----~------~--~---