File: compat.py

package info (click to toggle)
python-semantic-version 2.3.1-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 272 kB
  • sloc: python: 1,355; makefile: 175
file content (18 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
# Copyright (c) 2012-2014 The python-semanticversion project
# This code is distributed under the two-clause BSD License.

import sys

is_python2 = (sys.version_info[0] == 2)

if is_python2:  # pragma: no cover
    base_cmp = cmp
else:  # pragma: no cover
    def base_cmp(x, y):
        if x < y:
            return -1
        elif x > y:
            return 1
        else:
            return 0