summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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