diff options
author | Guido van Rossum <guido@python.org> | 2006-05-02 19:47:52 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-05-02 19:47:52 +0000 |
commit | da5b701aeef755f2317a41e36cc950cfdc0c95cb (patch) | |
tree | 11a37e4e8714ffbccce921aa0ef1878b7dc779b2 /Lib/dummy_thread.py | |
parent | 8f6cbe150228f175b57b7a774d0a630febe72244 (diff) | |
download | cpython-git-da5b701aeef755f2317a41e36cc950cfdc0c95cb.tar.gz |
Get rid of __context__, per the latest changes to PEP 343 and python-dev
discussion.
There are two places of documentation that still mention __context__:
Doc/lib/libstdtypes.tex -- I wasn't quite sure how to rewrite that without
spending a whole lot of time thinking about it; and whatsnew, which Andrew
usually likes to change himself.
Diffstat (limited to 'Lib/dummy_thread.py')
-rw-r--r-- | Lib/dummy_thread.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/dummy_thread.py b/Lib/dummy_thread.py index d69d84053d..21fd03f27f 100644 --- a/Lib/dummy_thread.py +++ b/Lib/dummy_thread.py @@ -118,9 +118,6 @@ class LockType(object): def __exit__(self, typ, val, tb): self.release() - def __context__(self): - return self - def release(self): """Release the dummy lock.""" # XXX Perhaps shouldn't actually bother to test? Could lead |