Comment 9 for bug 344079

Revision history for this message
Michael Terry (mterry) wrote :

Should work with all python versions. Apparently the import argument list changed for 2.6. But my patch uses the '*args, **kwargs' trick which basically says "i don't care what the arguments are or how many, just put them in a list"

So it's compatible for multiple python versions, particularly since the function doesn't use the arguments, just passes them on to the real import method.