Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / html / python / lib / optparse-defining-callback-option.html
CommitLineData
86530b38
AT
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html>
3<head>
4<link rel="STYLESHEET" href="lib.css" type='text/css' />
5<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
6<link rel='start' href='../index.html' title='Python Documentation Index' />
7<link rel="first" href="lib.html" title='Python Library Reference' />
8<link rel='contents' href='contents.html' title="Contents" />
9<link rel='index' href='genindex.html' title='Index' />
10<link rel='last' href='about.html' title='About this document...' />
11<link rel='help' href='about.html' title='About this document...' />
12<link rel="next" href="optparse-how-callbacks-called.html" />
13<link rel="prev" href="optparse-option-callbacks.html" />
14<link rel="parent" href="optparse-option-callbacks.html" />
15<link rel="next" href="optparse-how-callbacks-called.html" />
16<meta name='aesop' content='information' />
17<title>6.21.4.1 Defining a callback option</title>
18</head>
19<body>
20<DIV CLASS="navigation">
21<div id='top-navigation-panel' xml:id='top-navigation-panel'>
22<table align="center" width="100%" cellpadding="0" cellspacing="2">
23<tr>
24<td class='online-navigation'><a rel="prev" title="6.21.4 Option Callbacks"
25 href="optparse-option-callbacks.html"><img src='../icons/previous.png'
26 border='0' height='32' alt='Previous Page' width='32' /></A></td>
27<td class='online-navigation'><a rel="parent" title="6.21.4 Option Callbacks"
28 href="optparse-option-callbacks.html"><img src='../icons/up.png'
29 border='0' height='32' alt='Up One Level' width='32' /></A></td>
30<td class='online-navigation'><a rel="next" title="6.21.4.2 How callbacks are"
31 href="optparse-how-callbacks-called.html"><img src='../icons/next.png'
32 border='0' height='32' alt='Next Page' width='32' /></A></td>
33<td align="center" width="100%">Python Library Reference</td>
34<td class='online-navigation'><a rel="contents" title="Table of Contents"
35 href="contents.html"><img src='../icons/contents.png'
36 border='0' height='32' alt='Contents' width='32' /></A></td>
37<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
38 border='0' height='32' alt='Module Index' width='32' /></a></td>
39<td class='online-navigation'><a rel="index" title="Index"
40 href="genindex.html"><img src='../icons/index.png'
41 border='0' height='32' alt='Index' width='32' /></A></td>
42</tr></table>
43<div class='online-navigation'>
44<b class="navlabel">Previous:</b>
45<a class="sectref" rel="prev" href="optparse-option-callbacks.html">6.21.4 Option Callbacks</A>
46<b class="navlabel">Up:</b>
47<a class="sectref" rel="parent" href="optparse-option-callbacks.html">6.21.4 Option Callbacks</A>
48<b class="navlabel">Next:</b>
49<a class="sectref" rel="next" href="optparse-how-callbacks-called.html">6.21.4.2 How callbacks are</A>
50</div>
51<hr /></div>
52</DIV>
53<!--End of Navigation Panel-->
54
55<H3><A NAME="SECTION0082141000000000000000"></A><A NAME="optparse-defining-callback-option"></A>
56<BR>
576.21.4.1 Defining a callback option
58</H3>
59
60<P>
61As always, the easiest way to define a callback option is by using the
62<code>parser.add_option()</code> method. Apart from <tt class="member">action</tt>, the only option
63attribute you must specify is <code>callback</code>, the function to call:
64<div class="verbatim"><pre>
65parser.add_option("-c", action="callback", callback=my_callback)
66</pre></div>
67
68<P>
69<code>callback</code> is a function (or other callable object), so you must have
70already defined <code>my_callback()</code> when you create this callback option.
71In this simple case, <tt class="module">optparse</tt> doesn't even know if <b class="programopt">-c</b> takes any
72arguments, which usually means that the option takes no arguments--the
73mere presence of <b class="programopt">-c</b> on the command-line is all it needs to know. In
74some circumstances, though, you might want your callback to consume an
75arbitrary number of command-line arguments. This is where writing
76callbacks gets tricky; it's covered later in this section.
77
78<P>
79<tt class="module">optparse</tt> always passes four particular arguments to your callback, and it
80will only pass additional arguments if you specify them via
81<code>callback_args</code> and <code>callback_kwargs</code>. Thus, the minimal callback
82function signature is:
83<div class="verbatim"><pre>
84def my_callback(option, opt, value, parser):
85</pre></div>
86
87<P>
88The four arguments to a callback are described below.
89
90<P>
91There are several other option attributes that you can supply when you
92define a callback option:
93<DL>
94<DT><STRONG><tt class="member">type</tt></STRONG></DT>
95<DD>has its usual meaning: as with the <code>store</code> or <code>append</code> actions,
96it instructs <tt class="module">optparse</tt> to consume one argument and convert it to
97<tt class="member">type</tt>. Rather than storing the converted value(s) anywhere,
98though, <tt class="module">optparse</tt> passes it to your callback function.
99</DD>
100<DT><STRONG><code>nargs</code></STRONG></DT>
101<DD>also has its usual meaning: if it is supplied and &gt; 1, <tt class="module">optparse</tt> will
102consume <code>nargs</code> arguments, each of which must be convertible to
103<tt class="member">type</tt>. It then passes a tuple of converted values to your
104callback.
105</DD>
106<DT><STRONG><code>callback_args</code></STRONG></DT>
107<DD>a tuple of extra positional arguments to pass to the callback
108</DD>
109<DT><STRONG><code>callback_kwargs</code></STRONG></DT>
110<DD>a dictionary of extra keyword arguments to pass to the callback
111</DD>
112</DL>
113
114<P>
115
116<DIV CLASS="navigation">
117<div class='online-navigation'>
118<p></p><hr />
119<table align="center" width="100%" cellpadding="0" cellspacing="2">
120<tr>
121<td class='online-navigation'><a rel="prev" title="6.21.4 Option Callbacks"
122 href="optparse-option-callbacks.html"><img src='../icons/previous.png'
123 border='0' height='32' alt='Previous Page' width='32' /></A></td>
124<td class='online-navigation'><a rel="parent" title="6.21.4 Option Callbacks"
125 href="optparse-option-callbacks.html"><img src='../icons/up.png'
126 border='0' height='32' alt='Up One Level' width='32' /></A></td>
127<td class='online-navigation'><a rel="next" title="6.21.4.2 How callbacks are"
128 href="optparse-how-callbacks-called.html"><img src='../icons/next.png'
129 border='0' height='32' alt='Next Page' width='32' /></A></td>
130<td align="center" width="100%">Python Library Reference</td>
131<td class='online-navigation'><a rel="contents" title="Table of Contents"
132 href="contents.html"><img src='../icons/contents.png'
133 border='0' height='32' alt='Contents' width='32' /></A></td>
134<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
135 border='0' height='32' alt='Module Index' width='32' /></a></td>
136<td class='online-navigation'><a rel="index" title="Index"
137 href="genindex.html"><img src='../icons/index.png'
138 border='0' height='32' alt='Index' width='32' /></A></td>
139</tr></table>
140<div class='online-navigation'>
141<b class="navlabel">Previous:</b>
142<a class="sectref" rel="prev" href="optparse-option-callbacks.html">6.21.4 Option Callbacks</A>
143<b class="navlabel">Up:</b>
144<a class="sectref" rel="parent" href="optparse-option-callbacks.html">6.21.4 Option Callbacks</A>
145<b class="navlabel">Next:</b>
146<a class="sectref" rel="next" href="optparse-how-callbacks-called.html">6.21.4.2 How callbacks are</A>
147</div>
148</div>
149<hr />
150<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
151</DIV>
152<!--End of Navigation Panel-->
153<ADDRESS>
154See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
155</ADDRESS>
156</BODY>
157</HTML>