/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to dulwich/objects.py

  • Committer: Jelmer Vernooij
  • Date: 2008-12-11 10:52:43 UTC
  • mto: (0.215.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20081211105243-dokx6i1dofwnlrrm
Add simple pack dump utility.

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
    """
168
168
    return self.sha().digest() == other.sha().digest()
169
169
 
 
170
 
170
171
class Blob(ShaFile):
171
172
  """A Git Blob object."""
172
173
 
191
192
    shafile._update_contents()
192
193
    return shafile
193
194
 
 
195
 
194
196
class Tree(ShaFile):
195
197
  """A Git tree object"""
196
198