File: __init__.py

package info (click to toggle)
python-unicodecsv 0.14.1-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 192 kB
  • sloc: python: 1,036; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-
# http://semver.org/
import sys

if sys.version_info >= (3, 0):
    from unicodecsv.py3 import *
else:
    from unicodecsv.py2 import *

VERSION = (0, 14, 1)
__version__ = ".".join(map(str, VERSION))