bottlepy / bottle

bottle.py is a fast and simple micro-framework for python web-applications.
http://bottlepy.org/
MIT License
8.37k stars 1.46k forks source link

Don't mutate headers dict passed into static_file() #1246

Closed braedon closed 3 years ago

braedon commented 3 years ago

Mutating the passed in dict can produce unexpected results if the caller re-uses the dict, e.g. uses the same set of headers for multiple files.

defnull commented 3 years ago

Thanks, good catch!