I am creating my Db with this code
def open_db(self):
self.cadmvinfo.open(self.filename, db.DB_HASH,
db.DB_CREATE,db.DB_DUP)
I am putting the data with this code
def
store_data(self,manual_processing_code,date,file_code,license_number,vin_num
ber,
year_model,make
I am trying to noodle thru classes with python and I built the following
class
import time
class startremail:
def __init__(self):
remailfile = open('U:\Bounce20.txt', 'r') #future
address/file from outlook
resendfile = open('resend.txt', 'w') #currentl
I need to know how to read the next line while in the "for line in" loop.
Readline does not read the next line (I watched it in debug) I think it has
something to do with the for line loop but I have not found any
documentation in the doc's or tutor for any functions for line..
Thanks, please forg