[Python-checkins] r58242 - python/trunk/Doc/library/optparse.rst

georg.brandl python-checkins at python.org
Mon Sep 24 19:55:47 CEST 2007


Author: georg.brandl
Date: Mon Sep 24 19:55:47 2007
New Revision: 58242

Modified:
   python/trunk/Doc/library/optparse.rst
Log:
Fix typo and double word.


Modified: python/trunk/Doc/library/optparse.rst
==============================================================================
--- python/trunk/Doc/library/optparse.rst	(original)
+++ python/trunk/Doc/library/optparse.rst	Mon Sep 24 19:55:47 2007
@@ -954,7 +954,7 @@
 * ``append_const`` [required: ``const``; relevant: :attr:`dest`]
 
   Like ``store_const``, but the value ``const`` is appended to :attr:`dest`; as
-  with ``append``, :attr:`dest` defaults to ``None``, and an an empty list is
+  with ``append``, :attr:`dest` defaults to ``None``, and an empty list is
   automatically created the first time the option is encountered.
 
 * ``count`` [relevant: :attr:`dest`]
@@ -1120,7 +1120,7 @@
 
 * if the number starts with ``0``, it is parsed as an octal number
 
-* if the number starts with ``0b``, is is parsed as a binary number
+* if the number starts with ``0b``, it is parsed as a binary number
 
 * otherwise, the number is parsed as a decimal number
 


More information about the Python-checkins mailing list