mirror of
https://github.com/kennethreitz/dive-into-python3.git
synced 2026-06-05 23:10:17 +00:00
double sigh
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<!--[if IE]><script src=j/html5.js></script><![endif]-->
|
||||
<link rel=stylesheet href=dip3.css>
|
||||
<style>
|
||||
body{counter-reset:h1 16}
|
||||
body{counter-reset:h1 15}
|
||||
ins,del{line-height:2.154;text-decoration:none;font-style:normal;display:inline-block;width:100%}
|
||||
ins{background:#9f9}
|
||||
del{background:#f87}
|
||||
|
||||
@@ -42,7 +42,6 @@ h1:before,h2:before{content:''}
|
||||
<li><a href=xml.html>XML</a>
|
||||
<li><a href=serializing.html>Serializing Python Objects</a>
|
||||
<li><a href=http-web-services.html>HTTP Web Services</a>
|
||||
<li><a href=multiprocessing.html>Threading <i class=baa>&</i> Multiprocessing</a> (in progress)
|
||||
<li><a href=case-study-porting-chardet-to-python-3.html>Case Study: Porting <code>chardet</code> to Python 3</a>
|
||||
<li><a href=packaging.html>Packaging Python Libraries</a> (in progress)
|
||||
<li id=a><a href=porting-code-to-python-3-with-2to3.html>Porting Code to Python 3 with <code>2to3</code></a>
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>Threading & Multiprocessing - Dive into Python 3</title>
|
||||
<!--[if IE]><script src=j/html5.js></script><![endif]-->
|
||||
<link rel=stylesheet href=dip3.css>
|
||||
<style>
|
||||
body{counter-reset:h1 15}
|
||||
</style>
|
||||
<link rel=stylesheet media='only screen and (max-device-width: 480px)' href=mobile.css>
|
||||
<link rel=stylesheet media=print href=print.css>
|
||||
<meta name=viewport content='initial-scale=1.0'>
|
||||
</head>
|
||||
<form action=http://www.google.com/cse><div><input type=hidden name=cx value=014021643941856155761:l5eihuescdw><input type=hidden name=ie value=UTF-8> <input name=q size=25> <input type=submit name=root value=Search></div></form>
|
||||
<p>You are here: <a href=index.html>Home</a> <span class=u>‣</span> <a href=table-of-contents.html#multiprocessing>Dive Into Python 3</a> <span class=u>‣</span>
|
||||
<p id=level>Difficulty level: <span class=u title=advanced>♦♦♦♦♦</span>
|
||||
<h1>Threading <i class=baa>&</i> Multiprocessing</h1>
|
||||
<blockquote class=q>
|
||||
<p><span class=u>❝</span> FIXME <span class=u>❞</span><br>— FIXME
|
||||
</blockquote>
|
||||
<p id=toc>
|
||||
<h2 id=divingin>Diving In</h2>
|
||||
<p class=f>FIXME
|
||||
|
||||
<p class=a>⁂
|
||||
|
||||
<h2 id=furtherreading>Further Reading</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href=http://docs.python.org/3.1/library/threading.html><code>threading</code> module</a>
|
||||
<li><a href=http://www.doughellmann.com/PyMOTW/threading/><code>threading</code> — Manage concurrent threads</a>
|
||||
<li><a href=http://docs.python.org/3.1/library/multiprocessing.html><code>multiprocessing</code> module</a>
|
||||
<li><a href=http://www.doughellmann.com/PyMOTW/multiprocessing/><code>multiprocessing</code> — Manage processes like threads</a>
|
||||
<li><a href=http://jessenoller.com/2009/02/01/python-threads-and-the-global-interpreter-lock/>Python threads and the Global Interpreter Lock</a>
|
||||
<li><a href=http://blip.tv/file/2232410>Watch David Beazley’s “Inside the Python <abbr>GIL</abbr>” talk at PyCon 2009</a>
|
||||
</ul>
|
||||
|
||||
<p class=v><a rel=prev href=http-web-services.html title='back to “HTTP Web Services”'><span class=u>☜</span></a> <a rel=next href=case-study-porting-chardet-to-python-3.html title='onward to “Case Study: Porting chardet to Python 3”'><span class=u>☞</span></a>
|
||||
<p class=c>© 2001–9 <a href=about.html>Mark Pilgrim</a>
|
||||
<script src=j/jquery.js></script>
|
||||
<script src=j/prettify.js></script>
|
||||
<script src=j/dip3.js></script>
|
||||
+1
-1
@@ -5,7 +5,7 @@
|
||||
<!--[if IE]><script src=j/html5.js></script><![endif]-->
|
||||
<link rel=stylesheet href=dip3.css>
|
||||
<style>
|
||||
body{counter-reset:h1 17}
|
||||
body{counter-reset:h1 16}
|
||||
mark{display:inline}
|
||||
</style>
|
||||
<link rel=stylesheet media='only screen and (max-device-width: 480px)' href=mobile.css>
|
||||
|
||||
@@ -289,10 +289,6 @@ ul li ol{margin:0;padding:0 0 0 2.5em}
|
||||
<li><a href=http-web-services.html#beyond-post>Beyond HTTP POST</a>
|
||||
<li><a href=http-web-services.html#furtherreading>Further Reading</a>
|
||||
</ol>
|
||||
<li id=multiprocessing><a href=multiprocessing.html>Threading <i class=baa>&</i> Multiprocessing</a>
|
||||
<ol>
|
||||
<li>...
|
||||
</ol>
|
||||
<li id=case-study-porting-chardet-to-python-3><a href=case-study-porting-chardet-to-python-3.html>Case study: porting <code>chardet</code> to Python 3</a>
|
||||
<ol>
|
||||
<li><a href=case-study-porting-chardet-to-python-3.html#divingin>Introducing <code>chardet</code>: a mini-FAQ</a>
|
||||
|
||||
Reference in New Issue
Block a user