• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

documentation/H03-May-2022-1,219732

.gitignoreH A D01-Jan-198065 87

.travis.ymlH A D01-Jan-19801.9 KiB5150

CHANGESH A D01-Jan-19808 KiB303185

CONTRIBUTORSH A D01-Jan-1980663 3431

LICENSEH A D01-Jan-19801 KiB1915

MANIFEST.inH A D01-Jan-1980114 75

README.rstH A D01-Jan-19801.3 KiB3324

setup.cfgH A D01-Jan-1980290 2116

setup.pyH A D01-Jan-19802.2 KiB5930

six.pyH A D01-Jan-198031.7 KiB953724

test_six.pyH A D01-Jan-198029.5 KiB1,013776

tox.iniH A D01-Jan-1980196 129

README.rst

1.. image:: https://img.shields.io/pypi/v/six.svg
2   :target: https://pypi.org/project/six/
3   :alt: six on PyPI
4
5.. image:: https://travis-ci.org/benjaminp/six.svg?branch=master
6   :target: https://travis-ci.org/benjaminp/six
7   :alt: six on TravisCI
8
9.. image:: https://readthedocs.org/projects/six/badge/?version=latest
10   :target: https://six.readthedocs.io/
11   :alt: six's documentation on Read the Docs
12
13.. image:: https://img.shields.io/badge/license-MIT-green.svg
14   :target: https://github.com/benjaminp/six/blob/master/LICENSE
15   :alt: MIT License badge
16
17Six is a Python 2 and 3 compatibility library.  It provides utility functions
18for smoothing over the differences between the Python versions with the goal of
19writing Python code that is compatible on both Python versions.  See the
20documentation for more information on what is provided.
21
22Six supports every Python version since 2.6.  It is contained in only one Python
23file, so it can be easily copied into your project. (The copyright and license
24notice must be retained.)
25
26Online documentation is at https://six.readthedocs.io/.
27
28Bugs can be reported to https://github.com/benjaminp/six.  The code can also
29be found there.
30
31For questions about six or porting in general, email the python-porting mailing
32list: https://mail.python.org/mailman/listinfo/python-porting
33