html fiddling

This commit is contained in:
Mark Pilgrim
2009-02-08 15:38:07 -05:00
parent befd3f595b
commit 597f4dc0bb
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -22,7 +22,6 @@ ul{list-style:none}
<li><a href="case-study-porting-chardet-to-python-3.html">Chapter 20. Case study: porting <code>chardet</code> to Python 3</a>
<li><a href="porting-code-to-python-3-with-2to3.html">Appendix A. Porting code to Python 3 with <code>2to3</code></a>
</ul>
<p>There is a <a href="http://hg.diveintopython3.org/">changelog</a>, a <a rel="alternate" type="application/atom+xml" href="http://hg.diveintopython3.org/atom-log">feed</a>, and <a href="http://www.reddit.com/search?q=%22Dive+Into+Python+3%22&amp;sort=new">discussion on Reddit</a>. During development, you can download the book by cloning the Mercurial repository:
<pre><samp class="prompt">you@localhost:~$ </samp><kbd>hg clone http://hg.diveintopython3.org/ diveintopython3</kbd></pre>
<p>The final version will be downloadable as HTML and PDF.
+2 -2
View File
@@ -54,7 +54,7 @@ body{counter-reset:h1 2}
<li>Frozen sets
</ol>
-->
<li><a href="#dictionaries">Dictionaries
<li><a href="#dictionaries">Dictionaries</a>
<li><a href="#none"><code>None</code></a>
</ol>
<h2 id="divingin">Diving in</h2>
@@ -194,7 +194,7 @@ KeyError: 'db.diveintopython3.org'</samp></pre>
<a><samp class="prompt">>>> </samp><kbd>a_dict</kbd> <span>&#x2462;</span></a>
<samp>{'server': 'db.diveintopython3.org', 'user': 'mark', 'database': 'blog'}</samp>
<a><samp class="prompt">>>> </samp><kbd>a_dict["user"] = "dora"</kbd> <span>&#x2463;</span></a>
samp class="prompt">>>> </samp><kbd>a_dict</kbd>
<samp class="prompt">>>> </samp><kbd>a_dict</kbd>
<samp>{'server': 'db.diveintopython3.org', 'user': 'dora', 'database': 'blog'}</samp>
<a><samp class="prompt">>>> </samp><kbd>a_dict["User"] = "mark"</kbd> <span>&#x2464;</span></a>
<samp class="prompt">>>> </samp><kbd>a_dict</kbd>