Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
documentation/ | 25-Apr-2025 | - | 1,232 | 743 | ||
.gitignore | D | 25-Apr-2025 | 65 | 8 | 7 | |
.travis.yml | D | 25-Apr-2025 | 1.9 KiB | 51 | 49 | |
Android.bp | D | 25-Apr-2025 | 608 | 31 | 27 | |
CHANGES | D | 25-Apr-2025 | 9 KiB | 341 | 209 | |
CONTRIBUTORS | D | 25-Apr-2025 | 822 | 45 | 42 | |
LICENSE | D | 25-Apr-2025 | 1 KiB | 19 | 15 | |
MANIFEST.in | D | 25-Apr-2025 | 114 | 7 | 5 | |
METADATA | D | 25-Apr-2025 | 543 | 21 | 19 | |
OWNERS | D | 25-Apr-2025 | 40 | 3 | 2 | |
README.rst | D | 25-Apr-2025 | 1.2 KiB | 30 | 22 | |
setup.cfg | D | 25-Apr-2025 | 290 | 21 | 16 | |
setup.py | D | 25-Apr-2025 | 2.2 KiB | 59 | 30 | |
six.py | D | 25-Apr-2025 | 33.7 KiB | 999 | 755 | |
test_six.py | D | 25-Apr-2025 | 29.4 KiB | 1,042 | 794 | |
tox.ini | D | 25-Apr-2025 | 201 | 12 | 9 |
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