|
1 | 1 | .. _overview: |
2 | 2 |
|
3 | | -Overview: an easier, safer, cleaner upgrade path to Python 3 |
4 | | -============================================================ |
| 3 | +Overview: Easy, clean, reliable Python 2/3 compatibility |
| 4 | +======================================================== |
5 | 5 |
|
6 | | - |
7 | | -``python-future`` is the missing compatibility layer between Python 3 and |
8 | | -Python 2. It allows you to maintain a single, clean Python 3.x-compatible |
9 | | -codebase with minimal cruft and run it easily on Python 2 mostly unchanged. |
| 6 | +``python-future`` is the missing compatibility layer between Python 2 and |
| 7 | +Python 3. It allows you to use a single, clean Python 3.x-compatible |
| 8 | +codebase to support both Python 2 and Python 3 with minimal overhead. |
10 | 9 |
|
11 | 10 | It provides ``future`` and ``past`` packages with backports and forward ports of |
12 | 11 | features from Python 3 and 2. It also comes with ``futurize`` and |
13 | 12 | ``pasteurize``, customized 2to3-based scripts that helps you to convert either |
14 | 13 | Py2 or Py3 code easily to support both Python 2 and 3 in a single clean |
15 | 14 | Py3-style codebase, module by module. |
16 | 15 |
|
17 | | -Notable projects that use ``future`` for Python 3/2 compatibility are `Mezzanine |
18 | | -<http://mezzanine.jupo.org/>`_ and `ObsPy <http://obspy.org>`_. |
| 16 | +Notable projects that use ``python-future`` for Python 3/2 compatibility |
| 17 | +are `Mezzanine <http://mezzanine.jupo.org/>`_ and `ObsPy |
| 18 | +<http://obspy.org>`_. |
19 | 19 |
|
20 | 20 | .. _features: |
21 | 21 |
|
@@ -254,14 +254,15 @@ Licensing |
254 | 254 | --------- |
255 | 255 |
|
256 | 256 | :Author: Ed Schofield |
| 257 | +
|
| 258 | +:Copyright: 2013-2014 Python Charmers Pty Ltd, Australia. |
| 259 | +
|
257 | 260 | :Sponsor: Python Charmers Pty Ltd, Australia, and Python Charmers Pte |
258 | 261 | Ltd, Singapore. http://pythoncharmers.com |
259 | | -:Others: See `Credits <http://python-future.org/credits.html>`_. |
260 | 262 |
|
261 | | -Copyright 2013-2014 Python Charmers Pty Ltd, Australia. |
| 263 | +:Licence: MIT. See ``LICENSE.txt`` or `here <http://python-future.org/credits.html>`_. |
262 | 264 |
|
263 | | -The software is distributed under an MIT licence. See ``LICENSE.txt`` or `Licensing |
264 | | -<http://python-future.org/licensing.html>`_. |
| 265 | +:Other credits: See `here <http://python-future.org/credits.html>`_. |
265 | 266 |
|
266 | 267 |
|
267 | 268 | Next steps |
|
0 commit comments