convert to print function

This commit is contained in:
Benjamin Peterson 2010-03-03 02:09:18 +00:00
parent 98047eb806
commit b2deb118f5
1 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ produces either the sum or the max::
help='sum the integers (default: find the max)') help='sum the integers (default: find the max)')
args = parser.parse_args() args = parser.parse_args()
print args.accumulate(args.integers) print(args.accumulate(args.integers))
Assuming the Python code above is saved into a file called ``prog.py``, it can Assuming the Python code above is saved into a file called ``prog.py``, it can
be run at the command line and provides useful help messages:: be run at the command line and provides useful help messages::
@ -698,7 +698,7 @@ An example of a custom action::
>>> class FooAction(argparse.Action): >>> class FooAction(argparse.Action):
... def __call__(self, parser, namespace, values, option_string=None): ... def __call__(self, parser, namespace, values, option_string=None):
... print '%r %r %r' % (namespace, values, option_string) ... print('%r %r %r' % (namespace, values, option_string))
... setattr(namespace, self.dest, values) ... setattr(namespace, self.dest, values)
... ...
>>> parser = argparse.ArgumentParser() >>> parser = argparse.ArgumentParser()
@ -1413,10 +1413,10 @@ Sub-commands
>>> # sub-command functions >>> # sub-command functions
>>> def foo(args): >>> def foo(args):
... print args.x * args.y ... print(args.x * args.y)
... ...
>>> def bar(args): >>> def bar(args):
... print '((%s))' % args.z ... print('((%s))' % args.z)
... ...
>>> # create the top-level parser >>> # create the top-level parser
>>> parser = argparse.ArgumentParser() >>> parser = argparse.ArgumentParser()