Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

object_store: Allow MemoryObjectStore object deletion for tests.

Change-Id: I50e17d808849e7948178a84db812690d1f8f0f69

Changeset 7a4cd4bb176b

Parent 35f04d4ba0ea

committed by Jelmer Vernooij

authored by Dave Borowitz

Changes to one file · Browse files at 7a4cd4bb176b Showing diff from parent 35f04d4ba0ea Diff from another changeset...

 
579
580
581
 
 
 
 
582
583
584
 
579
580
581
582
583
584
585
586
587
588
@@ -579,6 +579,10 @@
  def __getitem__(self, name):   return self._data[name]   + def __delitem__(self, name): + """Delete an object from this store, for testing only.""" + del self._data[name] +   def add_object(self, obj):   """Add a single object to this object store.