**Description** Currently, to detect when a Point intersects with a Rect, collidepoint seems to be the preferred method. ``` if rect.collidepoint(point): ... ``` It would be more pythonic and improve code readability to additionally add this functionality to Rect's `__contains__`. ``` if point in rect: ... ```