我想使用sed命令注释掉以下代码行。
实际代码:
response = HttpResponse()
response['Content-Disposition'] = 'attachment; filename=%s.zip' % file_name.replace('.shp','')
response['Content-length'] = str(len(zip_stream))
response['Content-Type'] = mimetype
response.write(zip_stream)
return response
我想要什么:
#response = HttpResponse()
#response['Content-Disposition'] = 'attachment; filename=%s.zip' % file_name.replace('.shp','')
#response['Content-length'] = str(len(zip_stream))
#response['Content-Type'] = mimetype
#response.write(zip_stream)
#return response
唯一的问题是文件很大,而且response
到处都有,所以搜索应该根据上面提供的更具体。
给定的代码块位于特定文件的整个源代码的中间。