beremiz
Clone
Summary
Browse
Changes
Graph
py_ext: fix CSV write: row and column append, error when going past the end of CSV
py2compat
18 months ago, Edouard Tisserant
a2687c50362e
py_ext: fix CSV write: row and column append, error when going past the end of CSV
#!/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"]