-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The _EventBundle used previously dynamically creates the Event classes, which makes typing hard. As the Event classes are now stable the dynamic creation isn't required, and as h11 supports Python3.6+ dataclasses can be used instead. This now makes the Events frozen (and almost imutable) which better matches the intended API. In turn it requires the `object.__setattr__` usage and the alteration to the `_clean_up_response_headers_for_sending` method. This change also improves the performance a little, using the benchmark, Before: 6.7k requests/sec After: 6.9k requests/sec Notes: The test response-header changes are required as the previous version would mutate the response object. The init for the Data event is required as slots and defaults aren't possible with dataclasses.
- Loading branch information
Showing
7 changed files
with
186 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.