beremiz
Clone
Summary
Browse
Changes
Graph
Make Input widget actionable. Includes example from kraskrom@github.
17 months ago, Edouard Tisserant
5a1593e27171
Make Input widget actionable. Includes example from kraskrom@github.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# See COPYING.Runtime file for copyrights details.
LogLevels = ["CRITICAL", "WARNING", "INFO", "DEBUG"]
LogLevelsCount = len(LogLevels)
LogLevelsDict = dict(zip(LogLevels, range(LogLevelsCount)))
LogLevelsDefault = LogLevelsDict["DEBUG"]