This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jan.koprowski
Recipients jan.koprowski
Date 2011-04-03.04:57:15
SpamBayes Score 0.016408253
Marked as misclassified No
Message-id <1301806636.68.0.728514553962.issue11747@psf.upfronthosting.co.za>
In-reply-to
Content
Python:
---------------------------
>>> import difflib
>>> dl = difflib.unified_diff([], ['a\n', 'b\n'])
>>> print ''.join(dl),
---
+++
@@ -1,0 +1,2 @@
+a
+b

Gnu diff:
---------------------------
$diff -uN a b
--- a   1970-01-01 01:00:00.000000000 +0100
+++ b   2011-04-03 06:56:28.330543000 +0200
@@ -0,0 +1,2 @@
+a
+b
History
Date User Action Args
2011-04-03 04:57:16jan.koprowskisetrecipients: + jan.koprowski
2011-04-03 04:57:16jan.koprowskisetmessageid: <1301806636.68.0.728514553962.issue11747@psf.upfronthosting.co.za>
2011-04-03 04:57:15jan.koprowskilinkissue11747 messages
2011-04-03 04:57:15jan.koprowskicreate