summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Waldmann <tw AT waldmann-edv DOT de>2011-03-31 22:56:40 +0200
committerThomas Waldmann <tw AT waldmann-edv DOT de>2011-03-31 22:56:40 +0200
commitbdc1f747f115da0780db2dbcbfd5fc15ac9d4bf8 (patch)
tree6fb75fd00f18c0bc11921f8561ef7a4b84efb153
parente46e13751ebf91dc79a292c0bfe8d427fbc862e6 (diff)
downloadargparse-bdc1f747f115da0780db2dbcbfd5fc15ac9d4bf8.tar.gz
talk about python 3.x in the README
-rw-r--r--README.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/README.txt b/README.txt
index 9422a23..098bc43 100644
--- a/README.txt
+++ b/README.txt
@@ -6,10 +6,11 @@ how to parse those out of sys.argv. The argparse module also automatically
generates help and usage messages and issues errors when users give the
program invalid arguments.
-As of Python >= 2.7, the argparse module is maintained within the Python
-standard library. For users who still need to support Python < 2.7, it is
-also provided as a separate package, which tries to stay compatible with the
-module in the standard library, but also supports older Python versions.
+As of Python >= 2.7 and >= 3.2, the argparse module is maintained within the
+Python standard library. For users who still need to support Python < 2.7 or
+< 3.2, it is also provided as a separate package, which tries to stay
+compatible with the module in the standard library, but also supports older
+Python versions.
argparse is licensed under the Python license, for details see LICENSE.txt.
@@ -17,8 +18,10 @@ argparse is licensed under the Python license, for details see LICENSE.txt.
Compatibility
-------------
-argparse should work on Python >= 2.3 (it was tested on 2.3.5, 2.4.4, 2.5.5
-and 2.6.5 and 2.7).
+argparse should work on Python >= 2.3, it was tested on:
+
+* 2.3.5, 2.4.4, 2.5.5, 2.6.5 and 2.7
+* 3.1
Installation