-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: - callback() now called for some kinds of errors - 'select' module not imported when using CLI - CLI 'python -m xmodem send', recv still not implemented! minor changes: - add py3.5 to 3.11 targets to tox.ini - fix really slow tests by monkeypatch of time.sleep - make lrzsz package optional - remove unused or unreachable code and tests - increase coverage a small bit - remove unused runx() function - remove the serial arguments and module import they were never implemented! - set 'send error:' msg loglevel info -> error - set 'error_count reached' msg loglevel info -> error - set 'recv error: putc failed' msg loglevel debug -> warning - remove unused 'char' variable
- Loading branch information
Showing
8 changed files
with
222 additions
and
226 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# https://editorconfig.org/ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
charset = utf-8 | ||
|
||
[*.py] | ||
max_line_length = 100 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[pytest] | ||
# uncomment to ensure all logs are captured and displayed at debug level, even when successful. | ||
#log_cli = true | ||
#log_cli_level = DEBUG |
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 was deleted.
Oops, something went wrong.
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.