Git fork

Merge branch 'dl/python-2.7-is-the-floor-version'

Document that we do not support Python 2.6 or older.

* dl/python-2.7-is-the-floor-version:
CodingGuidelines: specify Python 2.7 is the oldest version

+1 -6
+1 -6
Documentation/CodingGuidelines
··· 489 489 490 490 - We follow PEP-8 (http://www.python.org/dev/peps/pep-0008/). 491 491 492 - - As a minimum, we aim to be compatible with Python 2.6 and 2.7. 492 + - As a minimum, we aim to be compatible with Python 2.7. 493 493 494 494 - Where required libraries do not restrict us to Python 2, we try to 495 495 also be compatible with Python 3.1 and later. 496 - 497 - - When you must differentiate between Unicode literals and byte string 498 - literals, it is OK to use the 'b' prefix. Even though the Python 499 - documentation for version 2.6 does not mention this prefix, it has 500 - been supported since version 2.6.0. 501 496 502 497 Error Messages 503 498