Re: Unix diff command under Window.

2005-08-25 Thread Max M
TonyHa wrote: Hello, Does any one have using Python to write a Unix diff command for Window? I generally just us the diff built into tortoiseSVN. That way it's only a rightclick away. -- hilsen/regards Max M, Denmark http://www.mxm.dk/ IT's Mad Science --

Re: Unix diff command under Window.

2005-08-25 Thread Thomas Heller
Trent Mick [EMAIL PROTECTED] writes: [Neil Hodgson wrote] Thomas Heller: Yes. There's a script in your Python distribution: Tools/scripts/diff.py See also the docs for the 'difflib' standard library module. Is the opposite code, a Python equivalent to 'patch' available? I

Unix diff command under Window.

2005-08-24 Thread TonyHa
Hello, Does any one have using Python to write a Unix diff command for Window? Tony Ha. -- http://mail.python.org/mailman/listinfo/python-list

Re: Unix diff command under Window.

2005-08-24 Thread Adriaan Renting
There probably is some free version somewhere, maybe even as part of CygWin. I've used Araxis Merge on Windows. It used to be shareware. It's nice enough that I bought it. TonyHa [EMAIL PROTECTED] 08/24/05 3:50 pm Hello, Does any one have using Python to write a Unix diff command for

Re: Unix diff command under Window.

2005-08-24 Thread Benji York
TonyHa wrote: Does any one have using Python to write a Unix diff command for Window? No, but you can get the *actual* diff command for Windows: http://unxutils.sourceforge.net/ -- Benji York -- http://mail.python.org/mailman/listinfo/python-list

Re: Unix diff command under Window.

2005-08-24 Thread Thomas Heller
TonyHa [EMAIL PROTECTED] writes: Hello, Does any one have using Python to write a Unix diff command for Window? Tony Ha. Yes. There's a script in your Python distribution: Tools/scripts/diff.py See also the docs for the 'difflib' standard library module. I do not know whether the Tools

Re: Unix diff command under Window.

2005-08-24 Thread Dejan Rodiger
TonyHa said the following on 24.08.2005 15:50: Hello, Does any one have using Python to write a Unix diff command for Window? http://gnuwin32.sourceforge.net/ http://gnuwin32.sourceforge.net/packages.html Under Diffutils -- Dejan Rodiger - PGP ID 0xAC8722DC Delete wirus from e-mail

Re: Unix diff command under Window.

2005-08-24 Thread jepler
Either it didn't exist at the time, or I didn't know about the diff.py that Thomas Heller mentioned in another response, so I wrote 'pyunidiff' http://unpy.net/~jepler/pyunidiff.py ah, I guess unix 'diff'-style output was added to difflib.py in 2003, while my pyunidiff dates to 2002.

Re: Unix diff command under Window.

2005-08-24 Thread Neil Hodgson
Thomas Heller: Yes. There's a script in your Python distribution: Tools/scripts/diff.py See also the docs for the 'difflib' standard library module. Is the opposite code, a Python equivalent to 'patch' available? I have endless trouble receiving patch files that assume one of Windows