[Python-Dev] RE: Python on Windows chapter.

Tim Peters tim_one@email.msn.com
Thu, 15 Jul 1999 03:00:14 -0400


>> I was discussing appending the mode ("t" or "b") to the open() call

> In addition, 't' probably isn't even supported on many Unix systems!

't' is not ANSI C, so there's no guarantee that it's portable.  Hate to say
it, but Python should really strip t out before passing a mode string to
fopen!