Martiusweb / asynctest

Enhance the standard unittest package with features for testing asyncio libraries
https://asynctest.readthedocs.org/
Apache License 2.0
309 stars 41 forks source link

Keep a view on internal selector map in TestSelector #133

Closed toffan closed 5 years ago

toffan commented 5 years ago

Change TestSelector._fd_to_key from a extended copy of TestSelector._selector._fd_to_key to a view on TestSelector._selector._fd_to_key plus the test-part extension. As a result, there is no need to update TestSelector._fd_to_key when TestSelector._selector._fd_to_key is modified.

fix #128