Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #66893

Re: argparse question

From Peter Otten <__peter__@web.de>
Subject Re: argparse question
Date 2014-02-22 12:58 +0100
Organization None
References <y-ednQHk88Q3H5XOnZ2dnUVZ_judnZ2d@giganews.com>
Newsgroups comp.lang.python
Message-ID <mailman.7260.1393070405.18130.python-list@python.org> (permalink)

Show all headers | View raw


Larry Hudson wrote:

> I have been reading the argparse section of the 3.3 docs, and running all
> the example code.
> 
> But in section 16.4.2.6. for the formatter_class, the second example in
> that section illustrating RawDescriptionHelpFormatter, the example code
> is:
> 
> parser = argparse.ArgumentParser(
>      prog='PROG',
>      formatter_class=argparse.RawDescriptionHelpFormatter,
>      description=textwrap.dedent('''\
>          Please do not mess up this text!
>          --------------------------------
>              I have indented it
>              exactly the way
>              I want it
>          '''))
> parser.print_help()
> 
> But trying to run this gives a NameError on the "description=" line,
> saying textwrap is not
> defined.  If I delete the "textwrap.dedent" (with or without also deleting
> the extra parentheses) it will then run, but without the un-indenting it
> is trying to illustrate.
> 
> What is the proper way to enable the dedent() method here?

textwrap is a module like argparse, and the example doesn't show

import argparse

either. Insert

import textwrap

at the beginning of your module and the code should run without error.


Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

argparse question Larry Hudson <orgnut@yahoo.com> - 2014-02-22 02:57 -0800
  Re: argparse question Peter Otten <__peter__@web.de> - 2014-02-22 12:58 +0100
    Re: argparse question Larry Hudson <orgnut@yahoo.com> - 2014-02-22 21:58 -0800

csiph-web