bottlepy / bottle

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

Fix #1359: check for attribute using hasattr #1360

Closed nootr closed 2 years ago

nootr commented 2 years ago

This PR fixes a bug where setting an existing, read-only property of a BaseRequest object does not raise an AttributeError.

Fixes #1359

defnull commented 2 years ago

Nice catch, thanks!