~ubuntu-branches/ubuntu/warty/python-gnuplot/warty

« back to all changes in this revision

Viewing changes to doc/Gnuplot/termdefs/ArgOneParam.html

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2003-11-16 12:36:26 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20031116123626-1knq7mn30ta2q6ds
Tags: 1.7-3
Fix typo in README.Debian (closes: #219485).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 
2
          "http://www.w3.org/TR/html40/loose.dtd">
 
3
 
 
4
<html>
 
5
         
 
6
  <head>
 
7
    <title>Class: ArgOneParam</title>
 
8
  </head>
 
9
 
 
10
  <body bgcolor="#ffffff">
 
11
 
 
12
        <p><i><a href="../../index.html">Table of Contents</a></i></p>
 
13
        
 
14
        <table border="0" cellpadding="5" cellspacing="0" width="100%">
 
15
        <tr>
 
16
            <th rowspan="2"
 
17
                valign="top"
 
18
                align="left"
 
19
                width="10%"
 
20
                bgcolor="#88bbee"><font color="#000000">Class: ArgOneParam</font>
 
21
            </th>
 
22
            <th bgcolor="#88bbee"
 
23
                width="90%"
 
24
                align="right"><font color="#000000">Gnuplot/termdefs.py</font>
 
25
            </th>
 
26
        </tr>
 
27
        <tr>
 
28
        <td>
 
29
        
 
30
<h3>Arg abstract base class specialized for exactly one parameter.</h3>
 
31
<h4>    Members:</h4>
 
32
<dl>
 
33
<dt>        <code>argname</code></dt>
 
34
<dd>The name of the keyword argument used to pass
 
35
            this argument to Python.</dd>
 
36
<dt>        <code>default</code></dt>
 
37
<dd>The default value of the argument, used if no
 
38
            keyword parameter is found.  If this is None, then no
 
39
            default is assumed.</dd>
 
40
</dl>
 
41
<table border="0" cellpadding="5" cellspacing="0" width="100%">
 
42
 
 
43
        <tr>
 
44
            <th bgcolor="#99ccff"
 
45
                rowspan="2"
 
46
                valign="top"
 
47
                align="left"
 
48
                width="20%"
 
49
                >
 
50
                <font color="#000000">
 
51
                  <a name="Base Classes">Base Classes</a>&nbsp;
 
52
                </font>
 
53
            </th>
 
54
            <th bgcolor="#99ccff"
 
55
                valign="top"
 
56
                align="left"
 
57
                width="80%"
 
58
                >
 
59
                <font color="#000000">&nbsp;</font>
 
60
            </th>
 
61
        </tr>
 
62
        <tr>
 
63
        <td>
 
64
        
 
65
<a href="Arg.html">Arg</a><br>
 
66
 
 
67
</td></tr>
 
68
</table>
 
69
<table border="0" cellpadding="5" cellspacing="0" width="100%">
 
70
 
 
71
        <tr>
 
72
            <th bgcolor="#99ccff"
 
73
                rowspan="2"
 
74
                valign="top"
 
75
                align="left"
 
76
                width="20%"
 
77
                >
 
78
                <font color="#000000">
 
79
                  <a name="Methods">Methods</a>&nbsp;
 
80
                </font>
 
81
            </th>
 
82
            <th bgcolor="#99ccff"
 
83
                valign="top"
 
84
                align="left"
 
85
                width="80%"
 
86
                >
 
87
                <font color="#000000">&nbsp;</font>
 
88
            </th>
 
89
        </tr>
 
90
        <tr>
 
91
        <td>
 
92
        
 
93
<a href="#__init__">__init__</a><br>
 
94
<a href="#get_option">get_option</a><br>
 
95
 
 
96
 
 
97
        <tr>
 
98
            <th bgcolor="#99ccff"
 
99
                rowspan="2"
 
100
                valign="top"
 
101
                align="left"
 
102
                width="20%"
 
103
                >
 
104
                <font color="#000000">
 
105
                  <a name="__init__"></a>&nbsp;
 
106
                </font>
 
107
            </th>
 
108
            <th bgcolor="#99ccff"
 
109
                valign="top"
 
110
                align="left"
 
111
                width="80%"
 
112
                >
 
113
                <font color="#000000">__init__&nbsp;</font>
 
114
            </th>
 
115
        </tr>
 
116
        <tr>
 
117
        <td>
 
118
        <font color="#000088"><pre>
 
119
__init__ (
 
120
        self,
 
121
        argname,
 
122
        default,
 
123
        )
 
124
 
 
125
</pre></font>
 
126
 
 
127
 
 
128
        <tr>
 
129
            <th bgcolor="#99ccff"
 
130
                rowspan="2"
 
131
                valign="top"
 
132
                align="left"
 
133
                width="20%"
 
134
                >
 
135
                <font color="#000000">
 
136
                  <a name="get_option"></a>&nbsp;
 
137
                </font>
 
138
            </th>
 
139
            <th bgcolor="#99ccff"
 
140
                valign="top"
 
141
                align="left"
 
142
                width="80%"
 
143
                >
 
144
                <font color="#000000">get_option&nbsp;</font>
 
145
            </th>
 
146
        </tr>
 
147
        <tr>
 
148
        <td>
 
149
        <font color="#000088"><pre>
 
150
get_option ( self,  keyw )
 
151
 
 
152
</pre></font>
 
153
 
 
154
<h3>Get the keyword argument corresponding to this Arg.</h3>
 
155
<p>        Look in keyw for the keyword argument needed by this Arg.  If
 
156
        it is found, delete it from keyw and return it.  If it is not
 
157
        found, return self.default.</p>
 
158
</td></tr>
 
159
</td></tr>
 
160
</table>
 
161
 
 
162
        </td>
 
163
        </tr>
 
164
        </table>
 
165
 
 
166
        <hr>
 
167
 
 
168
        <p><i><a href="../../index.html">Table of Contents</a></i></p>
 
169
 
 
170
        <font size="-2"><i>This document was automatically generated
 
171
        on Sun Oct 19 17:10:22 2003 by
 
172
        <a href="http://happydoc.sourceforge.net">HappyDoc</a> version
 
173
        2.1</i></font>
 
174
        
 
175
        </body>
 
176
        </html>
 
177
        
 
 
b'\\ No newline at end of file'