#1535: rename __builtin__ module to builtins.
diff --git a/Lib/io.py b/Lib/io.py
index f66f48b..ff03901 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -184,7 +184,7 @@
 
 
 class OpenWrapper:
-    """Wrapper for __builtin__.open
+    """Wrapper for builtins.open
 
     Trick so that open won't become a bound method when stored
     as a class variable (as dumbdbm does).