##// END OF EJS Templates
util: extract all date-related utils in utils/dateutil module...
util: extract all date-related utils in utils/dateutil module With this commit, util.py lose 262 lines Note for extensions author, if this commit breaks your extension, you can pull the step-by-step split here to help you more easily pinpoint the renaming that broke your extension: hg pull https://bitbucket.org/octobus/mercurial-devel/ -r ac1f6453010d Differential Revision: https://phab.mercurial-scm.org/D2282

File last commit:

r33305:aaa1f8f5 default
r36625:c6061cad default
Show More
test-diff-newlines.t
19 lines | 426 B | text/troff | Tads3Lexer
/ tests / test-diff-newlines.t
Adrian Buehlmann
tests: unify test-diff-newlines
r12143 $ hg init
Boris Feld
py3: fix test-diff-newlines.t to be compatible with py3
r33305 $ $PYTHON -c 'open("a", "wb").write(b"confuse str.splitlines\nembedded\rnewline\n")'
Adrian Buehlmann
tests: unify test-diff-newlines
r12143 $ hg ci -Ama -d '1 0'
adding a
$ echo clean diff >> a
$ hg ci -mb -d '2 0'
$ hg diff -r0 -r1
diff -r 107ba6f817b5 -r 310ce7989cdc a
--- a/a Thu Jan 01 00:00:01 1970 +0000
+++ b/a Thu Jan 01 00:00:02 1970 +0000
@@ -1,2 +1,3 @@
confuse str.splitlines
Mads Kiilerich
run-tests: allow test output lines to be terminated with \r in addition to \n...
r17742 embedded\r (no-eol) (esc)
newline
Adrian Buehlmann
tests: unify test-diff-newlines
r12143 +clean diff