Re: Minimal binary diff & version control in Python?

2009-04-26 Thread Lawrence D'Oliveiro
In message , Kevin Ar18 wrote: > I was just wonder about creating something small to handle version control > on binary files -- maybe something in Python. :) Why not just use what's available? For example: . -- http://mail.python.org/mailman/listinf

Re: Minimal binary diff & version control in Python?

2009-04-26 Thread Raymond Hettinger
[Kevin Ar18] > Has anyone ever tried to implement some form of version control in Python (if > so, where)? Yes. Here's the code I use to read and write my old version control files (originally created with TLIB): http://code.activestate.com/recipes/576729/ Raymond -- http://mail.python.org

Re: Minimal binary diff & version control in Python?

2009-04-25 Thread Chris Rebert
On Sat, Apr 25, 2009 at 7:47 PM, Kevin Ar18 wrote: > > 2. Has anyone ever tried to implement some form of version control in Python > (if so, where)? Both Bazaar (http://bazaar-vcs.org/) and Mercurial (http://www.selenic.com/mercurial/wiki/), two popular distributed VCS-es, are written in Python

Minimal binary diff & version control in Python?

2009-04-25 Thread Kevin Ar18
This is a two part question: 1. Is there a minimal binary diff comparison library for Python (like difflib, but able to create a minimal diff)? 2. Has anyone ever tried to implement some form of version control in Python (if so, where)? I was just wonder about creating something small to ha