diff --git a/client-libraries/python/redis.py b/client-libraries/python/redis.py
index ec480b3f6..ed7347236 100644
--- a/client-libraries/python/redis.py
+++ b/client-libraries/python/redis.py
@@ -747,11 +747,11 @@ class Redis(object):
         >>> r = Redis(db=9)
         >>> r.delete('a')
         1
-        >>> r.select(1)
+        >>> r.select(10)
         'OK'
         >>> r.set('a', 1)
         'OK'
-        >>> r.select(0)
+        >>> r.select(9)
         'OK'
         >>> r.get('a')
         >>> 
@@ -930,4 +930,4 @@ class Redis(object):
 if __name__ == '__main__':
     import doctest
     doctest.testmod()
-    
\ No newline at end of file
+