Skip to content

Instantly share code, notes, and snippets.

@tipabu
Created May 4, 2016 23:31
Show Gist options
  • Save tipabu/b7a4afd14db53e75f37a446db15a14a4 to your computer and use it in GitHub Desktop.
Save tipabu/b7a4afd14db53e75f37a446db15a14a4 to your computer and use it in GitHub Desktop.
def filter_factory(gc, **lc):
def no_range_filter(app):
def filter_app(env, start_response):
env.pop('HTTP_RANGE', None)
return app(env, start_response)
return filter_app
return no_range_filter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment