From: Neal Norwitz Date: Sat, 1 Mar 2003 22:58:00 +0000 (+0000) Subject: Fix comment, mode really is used X-Git-Tag: v2.3c1~1630 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f421e81e4112809380542af378575756247eba00;p=python Fix comment, mode really is used --- diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py index b6b7fc3ff2..d0e1e31206 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)