forked from aio-libs/aiosmtpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Unix Socket Controller (aio-libs#247)
* Decompose Controller * Implement UnixSocketController * Test newly-implemented TimeoutError * Add tests for UnixSocketController * Shorten some timeouts * Replace DeprecationWarning for Session.login_data to log.warning * Rename _test_server to _trigger_server * Update documentation * Change doctest runner to Sphinx.ext.doctest * Fixes for controller.rst * Also use sphinx-build doctest & html in GA * Also install flake8-bugbear for the flake8 step in GA * Update conf.py * Add --color to sphinx-build * Add fixture for "safe" socket path (aiohttp/3572) * Wait until factory _is_ invoked * Improve Controller.stop() * Change _dynamic to _dump * Activate "static" with win32 exclusion * Move flake8 config to setup.cfg * Add region..endregion fold marker * Skip UnixSocketController test & doctest on cygwin * Make "static" not run on cygwin as well * Enforce different version in PR * Update NEWS.rst * Bump version to 1.4.0a5
- Loading branch information
Showing
13 changed files
with
573 additions
and
200 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ docs/_build/ | |
nosetests.xml | ||
__pycache__/ | ||
htmlcov/ | ||
_dynamic/ | ||
_dump/ | ||
coverage.xml | ||
coverage-*.xml | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2014-2021 The aiosmtpd Developers | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
__version__ = "1.4.0a4" | ||
__version__ = "1.4.0a5" |
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.