diff options
author | Guido van Rossum <guido@python.org> | 1997-10-08 15:23:23 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-08 15:23:23 (GMT) |
commit | 2861f4ec6e6ed170490c302543faea5702426e81 (patch) | |
tree | 1497f26fded74cea8d2b19b82c03da7af3e90804 /Lib/pstats.py | |
parent | cbf3dd53b449995f3fa5fce89161985766cfe8cf (diff) | |
download | cpython-2861f4ec6e6ed170490c302543faea5702426e81.zip cpython-2861f4ec6e6ed170490c302543faea5702426e81.tar.gz cpython-2861f4ec6e6ed170490c302543faea5702426e81.tar.bz2 |
Open files in binary mode (Jack)
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r-- | Lib/pstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index e87478e..7e4a385 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -107,7 +107,7 @@ class Stats: def load_stats(self, arg): if not arg: self.stats = {} elif type(arg) == type(""): - f = open(arg, 'r') + f = open(arg, 'rb') self.stats = marshal.load(f) f.close() try: |