summaryrefslogtreecommitdiffstats
path: root/Lib/trace.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2005-10-28 14:39:47 (GMT)
committerFred Drake <fdrake@acm.org>2005-10-28 14:39:47 (GMT)
commitdb390c1ad8e2c8049e1d0d3828a979c75d1621b9 (patch)
tree110d3485f390abc738015ff6eb071a310febe856 /Lib/trace.py
parentf3396542806e9c6d1dfafda5d1e53296d3d1af09 (diff)
downloadcpython-db390c1ad8e2c8049e1d0d3828a979c75d1621b9.zip
cpython-db390c1ad8e2c8049e1d0d3828a979c75d1621b9.tar.gz
cpython-db390c1ad8e2c8049e1d0d3828a979c75d1621b9.tar.bz2
fix typos, mostly in comments
Diffstat (limited to 'Lib/trace.py')
-rw-r--r--Lib/trace.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py
index f167fcf..799c302 100644
--- a/Lib/trace.py
+++ b/Lib/trace.py
@@ -133,7 +133,7 @@ class Ignore:
# the ignore list
n = len(mod)
# (will not overflow since if the first n characters are the
- # same and the name has not already occured, then the size
+ # same and the name has not already occurred, then the size
# of "name" is greater than that of "mod")
if mod == modulename[:n] and modulename[n] == '.':
self._ignore[modulename] = 1