File: __init__.py

package info (click to toggle)
python-ruamel.ordereddict 0.4.9-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 376 kB
  • sloc: ansic: 3,678; python: 1,530; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
# coding: utf-8

version_info = (0, 4, 9)
version = '.'.join([str(x) if isinstance(x, int) else '.' + x + '.'
                    for x in version_info]).replace('..', '')

from _ordereddict import ordereddict, sorteddict