Merge pull request #4112 from BOINC/dpa_py_const

Python: new constants
This commit is contained in:
David Anderson 2020-12-02 16:05:57 -08:00 committed by GitHub
commit 57fa9d5ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -87,6 +87,12 @@ PROCESS_PRIORITY_LOW = 2
PROCESS_PRIORITY_NORMAL = 3
PROCESS_PRIORITY_HIGH = 4
PROCESS_PRIORITY_HIGHEST = 5
CONFIG_PRIORITY_LOWEST = 0
CONFIG_PRIORITY_LOW = 1
CONFIG_PRIORITY_NORMAL = 2
CONFIG_PRIORITY_HIGH = 3
CONFIG_PRIORITY_HIGHEST = 4
CONFIG_PRIORITY_REALTIME = 5
MSG_INFO = 1
MSG_USER_ALERT = 2
MSG_INTERNAL_ERROR = 3