Hi,
I am having python 2.4 on linux machine. I am using exec funcation as:
objconfigfile=open(path, 'r')
for line in objconfigfile.readlines()
if line == None:
continue
exec(line)
It is throwing exception as:
invalid syntax for "exec(line)"
Please let me know the issue, do we have exec function in python 2.4?
Kindly update