- 03 Agu, 2008 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 19 Şub, 2006 5 kayıt (commit)
-
-
Tim Peters yazdı
-
Georg Brandl yazdı
be used to control how files are opened.
-
Georg Brandl yazdı
specifying the file mode input files should be opened with.
-
Georg Brandl yazdı
current file number.
-
Georg Brandl yazdı
-
- 08 Ock, 2003 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 14 Agu, 2002 1 kayıt (commit)
-
-
Skip Montanaro yazdı
see bug 411881
-
- 06 Haz, 2002 1 kayıt (commit)
-
-
Walter Dörwald yazdı
equivalent attributes in a few more spots. This closes SF patch http://www.python.org/sf/562373
-
- 23 May, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 15 May, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Closes patch 556161.
-
- 16 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 07 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Mar, 2002 1 kayıt (commit)
-
-
Neil Schemenauer yazdı
-
- 24 Eki, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 Ock, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 05 Ock, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
other ways of reading input. :-( In the process, I added an optional bufsize argument to the input() function and the FileInput class.
-
- 10 Nis, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
default list of files from () to None, and explicitly test for None before defaulting to sys.argv[1:]. This means that if you pass in an explicit empty list, it will read stdin instead of defaulting to sys.argv[1:]. This fixes a buglet in the test script (when called with options but without files, it chokes when it tries to interpret the options as files). Lawrence adds: "I suspect that this is a safe change, because I can't imagine someone actively passing in an empty list when they want sys.argv used." I agree.
-
- 18 Eki, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
same permissions as the old file, plugging a security hole. (Not using exactly the suggested bugfix.)
-
- 20 Tem, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 21 Kas, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
the writing of filters. Typical use is: import fileinput for line in fileinput.input(): process(line) This iterates over the lines of all files listed in sys.argv[1:], defaulting to sys.stdin if the list is empty or when a filename is '-'. There is also an option to use this to direct the output back to the input files.
-