Make most file opening binary

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Make most file opening binary

This should make Windows happier

manifest hash: 4a906f7c55d8af4e962385c645852d0b3d858b42
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)

iD8DBQFCp52mywK+sNU5EO8RAtOzAJwK8MOtl3B0MDAXyJDnDFt9mHNINwCfVdRG
8z35hXvIJhz3sRo0ogdUZ0s=
=eM45
-----END PGP SIGNATURE-----
This commit is contained in:
mpm@selenic.com 2005-06-08 17:38:46 -08:00
parent 7ddff96dc1
commit fad79b21a5

View File

@ -279,7 +279,9 @@ def opener(base):
f = os.path.join(p, path)
if mode != "r":
mode += "b" # for that other OS
if mode[0] != "r":
try:
s = os.stat(f)
except OSError: