summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-04-04 13:01:19 +0000
committerRaymond Hettinger <python@rcn.com>2009-04-04 13:01:19 +0000
commit8daab407cd4eacb2680d730e8ca08e92eea04f97 (patch)
tree83e1ad2a301b4aa9546f8b936c1fd4124ee9ca19
parent2a0277703ea0045e2bd5e0c941d3e6275613d27c (diff)
downloadcpython-git-8daab407cd4eacb2680d730e8ca08e92eea04f97.tar.gz
Fix nits.
-rw-r--r--Doc/whatsnew/3.1.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst
index 5d92921345..8aeadb02ea 100644
--- a/Doc/whatsnew/3.1.rst
+++ b/Doc/whatsnew/3.1.rst
@@ -232,7 +232,7 @@ Some smaller changes made to the core Python language are:
* The :mod:`unittest` module now supports skipping individual tests or classes
of tests. And it supports marking a test as a expected failure, a test that
- is known to be broken, but shouldn’t be counted as a failure on a
+ is known to be broken, but shouldn't be counted as a failure on a
TestResult.
(Contributed by Benjamin Peterson.)
@@ -262,7 +262,7 @@ Major performance enhancements have been added:
(Contributed by Amaury Forgeot d'Arc and Antoine Pitrou.)
-* Add a heuristic so that tuples and dicts containing only untrackable objects
+* Added a heuristic so that tuples and dicts containing only untrackable objects
are not tracked by the garbage collector. This can reduce the size of
collections and therefore the garbage collection overhead on long-running
programs, depending on their particular use of datatypes.