-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CHANGE] Changed internal documentation in VoIP.py. [CHANGE] Changed tox.ini file to update new flake8 settings.
- Loading branch information
1 parent
2c6ae27
commit f100084
Showing
3 changed files
with
14 additions
and
5 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,10 @@ | ||
Global Variables | ||
######## | ||
|
||
There are a few global variables that may assist you if you're having problems with the library. | ||
|
||
pyVoIP.\ **DEBUG** = False | ||
If set to true, pyVoIP will print debug messages that may be useful if you need to open a GitHub issue. Otherwise, does nothing. | ||
|
||
pyVoIP.\ **TRANSMIT_DELAY_REDUCTION** = 0.0 | ||
The higher this variable is, the more often RTP packets are sent. This *should* only ever need to be 0.0. However, when testing on Windows, there has sometimes been jittering, setting this to 0.75 fixed this in testing, but you may need to tinker with this number on a per-system basis. |
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
[flake8] | ||
ignore = | ||
# Default Ignore's removed: | ||
# E226: missing whitespace around arithmatic operator | ||
# E241: multiple spaces after ',' | ||
# E242: tab after ',' | ||
# E203 whitespace before ':' | ||
# W503 line break before binary operator | ||
E121,E123,E126,E133,E704,W504 | ||
E203,W503 |