summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-04 07:36:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-04 07:36:25 (GMT)
commitc9ba38c21c9a7ba9e26cdfaee7f6e201f561222e (patch)
tree768b4ca1437b71d173403f4deb9fa2c78a6e49c7
parent2e229e025c5be101fbaaa5ace453fd78e5bffdd1 (diff)
downloadcpython-c9ba38c21c9a7ba9e26cdfaee7f6e201f561222e.zip
cpython-c9ba38c21c9a7ba9e26cdfaee7f6e201f561222e.tar.gz
cpython-c9ba38c21c9a7ba9e26cdfaee7f6e201f561222e.tar.bz2
Open files in binary mode to avoid newlines transformation.
-rw-r--r--Lib/test/test_doctest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py
index 4137d5a..74d512d 100644
--- a/Lib/test/test_doctest.py
+++ b/Lib/test/test_doctest.py
@@ -2624,8 +2624,8 @@ Windows line endings first:
>>> import tempfile, os
>>> fn = tempfile.mktemp()
- >>> with open(fn, 'w') as f:
- ... f.write('Test:\r\n\r\n >>> x = 1 + 1\r\n\r\nDone.\r\n')
+ >>> with open(fn, 'wb') as f:
+ ... f.write(b'Test:\r\n\r\n >>> x = 1 + 1\r\n\r\nDone.\r\n')
35
>>> doctest.testfile(fn, False)
TestResults(failed=0, attempted=1)
@@ -2634,8 +2634,8 @@ Windows line endings first:
And now *nix line endings:
>>> fn = tempfile.mktemp()
- >>> with open(fn, 'w') as f:
- ... f.write('Test:\n\n >>> x = 1 + 1\n\nDone.\n')
+ >>> with open(fn, 'wb') as f:
+ ... f.write(b'Test:\n\n >>> x = 1 + 1\n\nDone.\n')
30
>>> doctest.testfile(fn, False)
TestResults(failed=0, attempted=1)