summaryrefslogtreecommitdiff
path: root/Misc/Vim
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-05-02 19:47:52 +0000
committerGuido van Rossum <guido@python.org>2006-05-02 19:47:52 +0000
commit6207634d9cd1c2239d829f48398d3d395b15d5b4 (patch)
tree6f3a867a99ba9400cc8092b5c3f819a0a7894530 /Misc/Vim
parent197ee618506848a8f42a581ddb447c095f29cdaf (diff)
downloadcpython-6207634d9cd1c2239d829f48398d3d395b15d5b4.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 'Misc/Vim')
-rw-r--r--Misc/Vim/syntax_test.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Misc/Vim/syntax_test.py b/Misc/Vim/syntax_test.py
index a530a25364..ccc7f309c6 100644
--- a/Misc/Vim/syntax_test.py
+++ b/Misc/Vim/syntax_test.py
@@ -19,8 +19,6 @@ assert True # keyword
def foo(): # function definition
return []
class Bar(object): # Class definition
- def __context__(self):
- return self
def __enter__(self):
pass
def __exit__(self, *args):