summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-03-01 22:58:00 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-03-01 22:58:00 (GMT)
commitf421e81e4112809380542af378575756247eba00 (patch)
tree2ade9bdabb729ded8371339352438fd06dc65d76
parent4f959d2c73463bdce97a0f2047c9964f2ca0d32d (diff)
downloadcpython-f421e81e4112809380542af378575756247eba00.zip
cpython-f421e81e4112809380542af378575756247eba00.tar.gz
cpython-f421e81e4112809380542af378575756247eba00.tar.bz2
Fix comment, mode really is used
-rw-r--r--Lib/dumbdbm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py
index b6b7fc3..d0e1e31 100644
--- a/Lib/dumbdbm.py
+++ b/Lib/dumbdbm.py
@@ -166,5 +166,5 @@ def open(file, flag=None, mode=0666):
will be modified by the prevailing umask).
"""
- # flag, mode arguments are currently ignored
+ # flag argument is currently ignored
return _Database(file, mode)