Files
uwsgi/t/python/spooler_priority/spooler_priority_constants.py
2015-04-11 22:50:11 +10:00

23 lines
279 B
Python

#! /usr/bin/env python2
# coding = utf-8
tasks = [
(101, "101"),
(101, "101Bis"),
(2, "2"),
(1, "1"),
(0, "0"),
(None, "NoPriority")
]
ordered_tasks = [
"0",
"1",
"2",
"101",
"101Bis",
"NoPriority"
]
LOGFILE = "/tmp/spoolerlog"