PEP 3114: rename .next() to .__next__() and add next() builtin.
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index 0b4b941..0e34b15 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -721,7 +721,7 @@
     return [result] -- Exits from function (or method) and returns result (use a tuple to
                        return more than one value). If no result given, then returns None.
     yield result    -- Freezes the execution frame of a generator and returns the result
-                       to the iterator's .next() method.  Upon the next call to next(),
+                       to the iterator's .__next__() method.  Upon the next call to __next__(),
                        resumes execution at the frozen point with all of the local variables
                        still intact.
 
@@ -1058,7 +1058,7 @@
     SystemExit
          On 'sys.exit()'
     StopIteration
-         Signal the end from iterator.next()
+         Signal the end from iterator.__next__()
     StandardError
                  Base class for all built-in exceptions; derived from Exception
     root class.