From: Fred Drake Date: Tue, 6 Jul 1999 21:00:18 +0000 (+0000) Subject: Missing space; reported by Robert Kern . X-Git-Tag: v1.6a1~1099 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6166b871a24a7f983e0c48aaac264fef7c420738;p=thirdparty%2FPython%2Fcpython.git Missing space; reported by Robert Kern . --- diff --git a/Doc/lib/libasyncore.tex b/Doc/lib/libasyncore.tex index 2727b4b891da..5a57146308b0 100644 --- a/Doc/lib/libasyncore.tex +++ b/Doc/lib/libasyncore.tex @@ -16,7 +16,7 @@ socket service clients and servers. There are only two ways to have a program on a single processor do ``more than one thing at a time.'' Multi-threaded programming is the simplest and most popular way to do it, but there is another very -different technique, that lets youhave nearly all the advantages of +different technique, that lets you have nearly all the advantages of multi-threading, without actually using multiple threads. It's really only practical if your program is largely I/O bound. If your program is CPU bound, then pre-emptive scheduled threads are probably what