]> granicus.if.org Git - python/commitdiff
mkstemp(): The optional "binary" argument is clearly intended to be a
authorTim Peters <tim.peters@gmail.com>
Tue, 13 Aug 2002 23:38:30 +0000 (23:38 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 13 Aug 2002 23:38:30 +0000 (23:38 +0000)
Boolean, so changed its default value from 1 to True.

Lib/tempfile.py

index 8ed459954488b7862c07d64b46ea3716a1cebff6..24b78bf54ff92f949c55318420da4d6c37ec7907 100644 (file)
@@ -250,7 +250,7 @@ def gettempdir():
     _once('tempdir', _get_default_tempdir)
     return tempdir
 
-def mkstemp(suffix="", prefix=template, dir=gettempdir(), binary=1):
+def mkstemp(suffix="", prefix=template, dir=gettempdir(), binary=True):
     """mkstemp([suffix, [prefix, [dir, [binary]]]])
     User-callable function to create and return a unique temporary
     file.  The return value is a pair (fd, name) where fd is the