Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
documentation/ | 03-May-2024 | - | 1,200 | 722 | ||
six.egg-info/ | 03-May-2024 | - | 59 | 49 | ||
Android.bp | D | 03-May-2024 | 787 | 27 | 25 | |
CHANGES | D | 03-May-2024 | 7.8 KiB | 294 | 179 | |
LICENSE | D | 03-May-2024 | 1 KiB | 19 | 15 | |
MANIFEST.in | D | 03-May-2024 | 114 | 7 | 5 | |
METADATA | D | 03-May-2024 | 292 | 17 | 15 | |
NOTICE | D | 03-May-2024 | 1 KiB | 19 | 15 | |
OWNERS | D | 03-May-2024 | 205 | 5 | 4 | |
PKG-INFO | D | 03-May-2024 | 1.8 KiB | 42 | 33 | |
README.rst | D | 03-May-2024 | 1.1 KiB | 26 | 18 | |
setup.cfg | D | 03-May-2024 | 282 | 22 | 17 | |
setup.py | D | 03-May-2024 | 2.1 KiB | 57 | 28 | |
six.py | D | 03-May-2024 | 30.2 KiB | 892 | 676 | |
test_six.py | D | 03-May-2024 | 26.2 KiB | 935 | 727 |
README.rst
1.. image:: http://img.shields.io/pypi/v/six.svg 2 :target: https://pypi.python.org/pypi/six 3 4.. image:: https://travis-ci.org/benjaminp/six.svg?branch=master 5 :target: https://travis-ci.org/benjaminp/six 6 7.. image:: http://img.shields.io/badge/license-MIT-green.svg 8 :target: https://github.com/benjaminp/six/blob/master/LICENSE 9 10Six is a Python 2 and 3 compatibility library. It provides utility functions 11for smoothing over the differences between the Python versions with the goal of 12writing Python code that is compatible on both Python versions. See the 13documentation for more information on what is provided. 14 15Six supports every Python version since 2.6. It is contained in only one Python 16file, so it can be easily copied into your project. (The copyright and license 17notice must be retained.) 18 19Online documentation is at http://six.rtfd.org. 20 21Bugs can be reported to https://github.com/benjaminp/six. The code can also 22be found there. 23 24For questions about six or porting in general, email the python-porting mailing 25list: https://mail.python.org/mailman/listinfo/python-porting 26