summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2010-12-07 00:32:04 (GMT)
committerDavid Malcolm <dmalcolm@redhat.com>2010-12-07 00:32:04 (GMT)
commit778645a379e0ee3a31285d619e97148754413a44 (patch)
treeca7f209ab573148bfb90334c8f6055d74e9bddd7
parent1fa7682c268820f3860579c39527f6878173ec6b (diff)
downloadcpython-778645a379e0ee3a31285d619e97148754413a44.zip
cpython-778645a379e0ee3a31285d619e97148754413a44.tar.gz
cpython-778645a379e0ee3a31285d619e97148754413a44.tar.bz2
Fix typo
-rw-r--r--Doc/whatsnew/3.2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 8082ca0..421776b 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -182,7 +182,7 @@ see :ref:`code for computing prime numbers in parallel<processpoolexecutor-examp
PEP 3147: PYC Repository Directories
=====================================
-Python's scheme for caching bytecode in *.pyc* files did not wosrk well in
+Python's scheme for caching bytecode in *.pyc* files did not work well in
environments with multiple python interpreters. If one interpreter encountered
a cached file created by another interpreter, it would recompile the source and
overwrite the cached file, thus losing the benefits of caching.