~ubuntu-branches/ubuntu/lucid/phatch/lucid

« back to all changes in this revision

Viewing changes to docs/build/html/lib.odict.html

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2009-09-25 23:22:12 UTC
  • mfrom: (1.1.6 upstream) (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090925232212-tpdypfah7cupooz5
Tags: 0.2.1-4
Add mlocate as an alternative dependency to locate (Closes: #548251)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
2
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
3
 
 
4
<html xmlns="http://www.w3.org/1999/xhtml">
 
5
  <head>
 
6
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
7
    
 
8
    <title>odict &mdash; Phatch v0.2 documentation</title>
 
9
    <link rel="stylesheet" href="_static/default.css" type="text/css" />
 
10
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
 
11
    <script type="text/javascript">
 
12
      var DOCUMENTATION_OPTIONS = {
 
13
        URL_ROOT:    '',
 
14
        VERSION:     '0.2',
 
15
        COLLAPSE_MODINDEX: false,
 
16
        FILE_SUFFIX: '.html',
 
17
        HAS_SOURCE:  true
 
18
      };
 
19
    </script>
 
20
    <script type="text/javascript" src="_static/jquery.js"></script>
 
21
    <script type="text/javascript" src="_static/doctools.js"></script>
 
22
    <link rel="top" title="Phatch v0.2 documentation" href="index.html" />
 
23
    <link rel="up" title="lib" href="lib.html" />
 
24
    <link rel="next" title="openImage" href="lib.openImage.html" />
 
25
    <link rel="prev" title="notify" href="lib.notify.html" /> 
 
26
  </head>
 
27
  <body>
 
28
    <div class="related">
 
29
      <h3>Navigation</h3>
 
30
      <ul>
 
31
        <li class="right" style="margin-right: 10px">
 
32
          <a href="genindex.html" title="General Index"
 
33
             accesskey="I">index</a></li>
 
34
        <li class="right" >
 
35
          <a href="modindex.html" title="Global Module Index"
 
36
             accesskey="M">modules</a> |</li>
 
37
        <li class="right" >
 
38
          <a href="lib.openImage.html" title="openImage"
 
39
             accesskey="N">next</a> |</li>
 
40
        <li class="right" >
 
41
          <a href="lib.notify.html" title="notify"
 
42
             accesskey="P">previous</a> |</li>
 
43
        <li><a href="index.html">Phatch v0.2 documentation</a> &raquo;</li>
 
44
          <li><a href="lib.html" accesskey="U">lib</a> &raquo;</li> 
 
45
      </ul>
 
46
    </div>  
 
47
 
 
48
    <div class="document">
 
49
      <div class="documentwrapper">
 
50
        <div class="bodywrapper">
 
51
          <div class="body">
 
52
            
 
53
  <div class="section" id="module-lib.odict">
 
54
<h1>odict<a class="headerlink" href="#module-lib.odict" title="Permalink to this headline">¶</a></h1>
 
55
<dl class="class">
 
56
<dt id="lib.odict.ReadOnlyDict">
 
57
<em class="property">
 
58
class </em><tt class="descclassname">lib.odict.</tt><tt class="descname">ReadOnlyDict</tt><big>(</big><em>data</em><big>)</big><a class="headerlink" href="#lib.odict.ReadOnlyDict" title="Permalink to this definition">¶</a></dt>
 
59
<dd></dd></dl>
 
60
 
 
61
<dl class="class">
 
62
<dt id="lib.odict.odict">
 
63
<em class="property">
 
64
class </em><tt class="descclassname">lib.odict.</tt><tt class="descname">odict</tt><big>(</big><em>d=None</em><big>)</big><a class="headerlink" href="#lib.odict.odict" title="Permalink to this definition">¶</a></dt>
 
65
<dd><p>Bases: <tt class="xref docutils literal"><span class="pre">dict</span></tt></p>
 
66
<p>This one uses generators in places where it can, and plays nicely 
 
67
with deepcopy.</p>
 
68
<dl class="method">
 
69
<dt id="lib.odict.odict.clear">
 
70
<tt class="descname">clear</tt><big>(</big><big>)</big><a class="headerlink" href="#lib.odict.odict.clear" title="Permalink to this definition">¶</a></dt>
 
71
<dd></dd></dl>
 
72
 
 
73
<dl class="method">
 
74
<dt id="lib.odict.odict.index">
 
75
<tt class="descname">index</tt><big>(</big><em>key</em><big>)</big><a class="headerlink" href="#lib.odict.odict.index" title="Permalink to this definition">¶</a></dt>
 
76
<dd></dd></dl>
 
77
 
 
78
<dl class="method">
 
79
<dt id="lib.odict.odict.items">
 
80
<tt class="descname">items</tt><big>(</big><big>)</big><a class="headerlink" href="#lib.odict.odict.items" title="Permalink to this definition">¶</a></dt>
 
81
<dd></dd></dl>
 
82
 
 
83
<dl class="method">
 
84
<dt id="lib.odict.odict.keys">
 
85
<tt class="descname">keys</tt><big>(</big><big>)</big><a class="headerlink" href="#lib.odict.odict.keys" title="Permalink to this definition">¶</a></dt>
 
86
<dd></dd></dl>
 
87
 
 
88
<dl class="method">
 
89
<dt id="lib.odict.odict.move">
 
90
<tt class="descname">move</tt><big>(</big><em>key</em>, <em>index</em><big>)</big><a class="headerlink" href="#lib.odict.odict.move" title="Permalink to this definition">¶</a></dt>
 
91
<dd>Move the specified to key to <em>before</em> the specified index.</dd></dl>
 
92
 
 
93
<dl class="method">
 
94
<dt id="lib.odict.odict.popitem">
 
95
<tt class="descname">popitem</tt><big>(</big><big>)</big><a class="headerlink" href="#lib.odict.odict.popitem" title="Permalink to this definition">¶</a></dt>
 
96
<dd></dd></dl>
 
97
 
 
98
<dl class="method">
 
99
<dt id="lib.odict.odict.setdefault">
 
100
<tt class="descname">setdefault</tt><big>(</big><em>key</em>, <em>failobj=None</em><big>)</big><a class="headerlink" href="#lib.odict.odict.setdefault" title="Permalink to this definition">¶</a></dt>
 
101
<dd></dd></dl>
 
102
 
 
103
<dl class="method">
 
104
<dt id="lib.odict.odict.update">
 
105
<tt class="descname">update</tt><big>(</big><em>d</em><big>)</big><a class="headerlink" href="#lib.odict.odict.update" title="Permalink to this definition">¶</a></dt>
 
106
<dd></dd></dl>
 
107
 
 
108
<dl class="method">
 
109
<dt id="lib.odict.odict.values">
 
110
<tt class="descname">values</tt><big>(</big><big>)</big><a class="headerlink" href="#lib.odict.odict.values" title="Permalink to this definition">¶</a></dt>
 
111
<dd></dd></dl>
 
112
 
 
113
</dd></dl>
 
114
 
 
115
</div>
 
116
 
 
117
 
 
118
          </div>
 
119
        </div>
 
120
      </div>
 
121
      <div class="sphinxsidebar">
 
122
        <div class="sphinxsidebarwrapper">
 
123
            <h4>Previous topic</h4>
 
124
            <p class="topless"><a href="lib.notify.html"
 
125
                                  title="previous chapter">notify</a></p>
 
126
            <h4>Next topic</h4>
 
127
            <p class="topless"><a href="lib.openImage.html"
 
128
                                  title="next chapter">openImage</a></p>
 
129
            <h3>This Page</h3>
 
130
            <ul class="this-page-menu">
 
131
              <li><a href="_sources/lib.odict.txt"
 
132
                     rel="nofollow">Show Source</a></li>
 
133
            </ul>
 
134
          <div id="searchbox" style="display: none">
 
135
            <h3>Quick search</h3>
 
136
              <form class="search" action="search.html" method="get">
 
137
                <input type="text" name="q" size="18" />
 
138
                <input type="submit" value="Go" />
 
139
                <input type="hidden" name="check_keywords" value="yes" />
 
140
                <input type="hidden" name="area" value="default" />
 
141
              </form>
 
142
              <p class="searchtip" style="font-size: 90%">
 
143
              Enter search terms or a module, class or function name.
 
144
              </p>
 
145
          </div>
 
146
          <script type="text/javascript">$('#searchbox').show(0);</script>
 
147
        </div>
 
148
      </div>
 
149
      <div class="clearer"></div>
 
150
    </div>
 
151
    <div class="related">
 
152
      <h3>Navigation</h3>
 
153
      <ul>
 
154
        <li class="right" style="margin-right: 10px">
 
155
          <a href="genindex.html" title="General Index"
 
156
             >index</a></li>
 
157
        <li class="right" >
 
158
          <a href="modindex.html" title="Global Module Index"
 
159
             >modules</a> |</li>
 
160
        <li class="right" >
 
161
          <a href="lib.openImage.html" title="openImage"
 
162
             >next</a> |</li>
 
163
        <li class="right" >
 
164
          <a href="lib.notify.html" title="notify"
 
165
             >previous</a> |</li>
 
166
        <li><a href="index.html">Phatch v0.2 documentation</a> &raquo;</li>
 
167
          <li><a href="lib.html" >lib</a> &raquo;</li> 
 
168
      </ul>
 
169
    </div>
 
170
    <div class="footer">
 
171
      &copy; Copyright 2009, www.stani.be.
 
172
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.2.
 
173
    </div>
 
174
  </body>
 
175
</html>
 
 
b'\\ No newline at end of file'