baestore.py里: def dump_file(filename,file_obj): b = bcs.bucket(BUCKET) with NamedTemporaryFile() as f: o = b.object('/%s'%filename) o.put_file(f.name) file_obj没有用到,是不是有问题?