>>> rows = arcpy.SearchCursor("pyLateralLine") >>> for row in rows: ... print "something"
Solved! Go to Solution.
Can you elaborate? Which storage formats don't work with .reset()?
rows = arcpy.SearchCursor("pyLateralLine") for row in rows: print "something" del row del rows