summaryrefslogtreecommitdiff
path: root/Misc/cheatsheet
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-06-24 06:42:05 +0000
committerGeorg Brandl <georg@python.org>2009-06-24 06:42:05 +0000
commit193ac196faf343374a30b19c2ab47d000e5b9900 (patch)
treeed0bf3b33765e9a72510992072d11d3e17304b97 /Misc/cheatsheet
parent453d95204631ec46236d79e0dd37c1995bfa70a1 (diff)
downloadcpython-193ac196faf343374a30b19c2ab47d000e5b9900.tar.gz
Merged revisions 73544 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73544 | georg.brandl | 2009-06-24 06:41:19 +0000 (Mi, 24 Jun 2009) | 1 line #6332: fix word dupes throughout the source. ........
Diffstat (limited to 'Misc/cheatsheet')
-rw-r--r--Misc/cheatsheet2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index 789e9c32f8..8c5ddcb457 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -1106,7 +1106,7 @@ Exception>
Standard methods & operators redefinition in classes
Standard methods & operators map to special '__methods__' and thus may be
- redefined (mostly in in user-defined classes), e.g.:
+ redefined (mostly in user-defined classes), e.g.:
class x:
def __init__(self, v): self.value = v
def __add__(self, r): return self.value + r