Python Six - Python2和3的兼容库


MIT
跨平台
Python

软件简介

Six 提供了一些简单的工具用来封装 Python 2 和 Python 3 之间的差异性,示例代码:

import six

def dispatch_types(value):
    if isinstance(value, six.integer_types):
        handle_integer(value)
    elif isinstance(value, six.class_types):
        handle_class(value)
    elif isinstance(value, six.string_types):
        handle_string(value)