Hi,
System: Solaris
Python version: 2.3.3
For a automation job, I used pexpect module together with python for
creating a ftp session automatically and downloading the file.
I notice that after closing the child. The file descriptor is not
closed (check /proc//fd)
After running the script for a
Hi,
System: Solaris
Python version: 2.3.3
For a automation job, I used pexpect module together with python for
creating a ftp session automatically and downloading the file.
I notice that after closing the child. The file descriptor is not
closed (check /proc//fd)
After running the script for a
I have created a script using python that will batch process data
files every hour
The script is running on Solaris. Python version 2.3.3
t=open(filename,'rb')
data=t.read()
#processing data...
t.close()
The script is working fine on the day of execution.
It is able to process the data files ver