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

..--

documentation/25-Apr-2025-1,232743

.gitignoreD25-Apr-202565 87

.travis.ymlD25-Apr-20251.9 KiB5149

Android.bpD25-Apr-2025608 3127

CHANGESD25-Apr-20259 KiB341209

CONTRIBUTORSD25-Apr-2025822 4542

LICENSED25-Apr-20251 KiB1915

MANIFEST.inD25-Apr-2025114 75

METADATAD25-Apr-2025543 2119

OWNERSD25-Apr-202540 32

README.rstD25-Apr-20251.2 KiB3022

setup.cfgD25-Apr-2025290 2116

setup.pyD25-Apr-20252.2 KiB5930

six.pyD25-Apr-202533.7 KiB999755

test_six.pyD25-Apr-202529.4 KiB1,042794

tox.iniD25-Apr-2025201 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 Python 2.7 and 3.3+.  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