py3k: Go through all uses of itertools and make them work on py3k
[jelmer/dulwich.git] / dulwich / object_store.py
2014-06-01 Hannu Valtonenpy3k: Go through all uses of itertools and make them...
2014-05-24 Gary van der MerweMake next methods available as __next__.
2014-04-20 Jelmer VernooijOnly reload new pack files, and discard old ones when...
2014-04-17 Damien TournoudFix leak when pack cache is rebuilt.
2014-04-02 Jelmer VernooijMerge branch 'python3' of git://github.com/garyvdm...
2014-04-02 Gary van der MerweUse next(iter) instead of iter.next()
2014-04-02 Gary van der MerweUse io.BytesIO rather than cStringIO.
2014-02-23 Jelmer VernooijAdd DiskObjectStore.__repr__.
2014-01-28 Jelmer VernooijMerge milki's shallow branch support.
2014-01-21 milkiSpecify custom get_parents
2013-12-04 Jelmer VernooijUse new style exception handling in a few more places.
2013-11-26 Jelmer VernooijSupport reusing known sha during object creation.
2013-11-10 Jelmer VernooijActually use Repo.get_parents.
2013-11-04 Jelmer VernooijUpdate some copyright headers.
2013-10-23 maxProperly close pack files on exceptions.
2013-09-08 Jelmer VernooijAdd ObjectStore.close.
2013-09-07 Jelmer VernooijAdd abort return value to ObjectStore.add_pack.
2013-08-19 David BennettAdd add_pack and add_thin_pack methods to MemoryObjectS...
2013-05-04 milkiAdd relative path git alternates support
2012-12-05 Jelmer VernooijMerge push efficiency fixes from Artem Tikhomirov.
2012-12-05 Jelmer Vernooijformatting fixes, trailing whitespace, unused imports.
2012-12-05 Artem TikhomirovBug 562676: Push efficiency - report missing objects...
2012-11-14 Jelmer VernooijMerge fix for use of alternates in DiskObjectStore...
2012-11-14 Jelmer VernooijSimplify checking of alternates in __contains__.
2012-11-14 Dmitriyalternates: remove contains_alternate() and move the...
2012-11-14 Dmitriyalternates: add alternates check to __contains__ and...
2012-08-26 Jelmer VernooijPrevent errors about string formatting when tuples...
2012-03-21 Jelmer VernooijMerge addition of dulwich.index.build_index_from_tree...
2012-03-19 Jelmer Vernooijmerge trunk
2012-03-04 Jelmer VernooijFix two pydoctor warnings.
2012-02-09 Jelmer VernooijMerge fix for formatting of 'extension not found' messages.
2012-02-09 Risto KankkunenMerged master
2012-01-18 Jelmer VernooijMerge various fixes for running the testsuite on Windows.
2012-01-18 Risto KankkunenFix incorrect read/write handling in "object_store...
2012-01-05 Jelmer VernooijFix docstring for ObjectStore.tree_changes.
2011-12-26 Jelmer VernooijMerge trunk.
2011-12-08 Jelmer VernooijAdd more assertions.
2011-12-04 Jelmer Vernooijdulwich.object_store: Ensure only valid data is added...
2011-09-24 Jelmer VernooijMerge deprecation of ``Repo.revision_history`` in favor...
2011-09-04 Jelmer VernooijMerge basic support for alternates.
2011-09-04 Jelmer VernooijCope with locking.
2011-09-04 Jelmer VernooijAdd basic support for alternates.
2011-08-01 Dave Borowitzobject_store: Don't send a pack with duplicates of...
2011-07-29 Jelmer VernooijObjectStore.get_graph_walker() now no longer yields...
2011-07-29 Jelmer VernooijRemove unused imports.
2011-07-29 David Borowitzobjects: Add lookup_path method to Tree.
2011-07-28 Dave Borowitzpack: Nuke ThinPackData.
2011-07-28 Dave BorowitzRewrite add_thin_pack to use the fast PackIndexer.
2011-07-28 Dave Borowitzobject_store: Fix return type of MemoryObjectStore...
2011-07-23 Jelmer VernooijMerge improvements to pack writing code.
2011-07-23 Jelmer VernooijSeparate out delta generation from pack writing.
2011-07-21 Jelmer VernooijActually create deltas when creating packs.
2011-07-21 Jelmer VernooijAdd Pack.pack_tuples().
2011-07-21 Jelmer VernooijMerge improvements to memory usage of write_pack_data.
2011-07-21 Jelmer Vernooijwrite_pack_data and write_pack no longer take a num_obj...
2011-03-16 Jelmer VernooijMerge deprecation of Tree.entries.
2011-03-13 Jelmer VernooijDeprecate Tree.entries.
2011-03-06 Jelmer VernooijBaseObjectStore.determine_wants_all no longer breaks...
2011-01-05 Jelmer Vernooijobject_store: Remove empty pack files when not moving...
2010-12-21 Jelmer VernooijCleanup some imports.
2010-12-21 Tay Ray Chuanobject_store.DiskObjectStore.move_in_thin_pack: close...
2010-12-19 Jelmer VernooijReplace :yield: with :return: as the former is not...
2010-12-18 Dave BorowitzUse diff_tree.walk_trees for BaseObjectStore.iter_tree_...
2010-12-18 Dave BorowitzUse diff_tree.tree_changes for BaseObjectStore.tree_cha...
2010-12-06 Dave Borowitzobject_store: Allow MemoryObjectStore object deletion...
2010-11-26 Jelmer VernooijMention invalid name repr in exception.
2010-10-26 Jelmer VernooijSome formatting fixes.
2010-10-16 Jelmer VernooijMerge some bare-repo related fixes from Dirk Neumann.
2010-08-26 David BorowitzMissingObjectFinder: minor cleanup: 80 chars, others.
2010-08-08 Dave BorowitzDelegate SHA peeling to the object store.
2010-08-08 Jelmer VernooijFix typo.
2010-08-01 Dave BorowitzFix iter_tree_contents iteration.
2010-07-30 Dave Borowitzobject_store: Include subtrees in iteration.
2010-07-30 Dave Borowitzobject_store: Make iter_tree_contents depth-first.
2010-06-28 Jelmer VernooijUse self.store rather than explicitly creating a DiskOb...
2010-06-28 Jelmer Vernooijdulwich.pack.write_pack_index_v{1,2} now take a file...
2010-06-28 Jelmer VernooijAdd PackBasedObjectStore.pack_loose_objects().
2010-05-05 Jelmer VernooijMerge cleanups and use of proper per-service capabiliti...
2010-04-30 Jelmer VernooijDistinguish between ShaFile.from_file and ShaFile.from_...
2010-04-30 Jelmer VernooijPass external object resolve function rather than full...
2010-04-30 Jelmer VernooijMerge Dave, highlights:
2010-04-22 Dave BorowitzDo simple pack checking during receive-pack.
2010-04-22 Dave BorowitzSimplify and fix thin pack resolving.
2010-04-15 Jelmer VernooijMerge trunk.
2010-04-13 Augie Facklerobject_store: clean up whitespace
2010-04-12 Dave BorowitzMake ShaFiles created from files trust their filenames.
2010-04-12 Dave BorowitzLazily read the contents of ShaFiles from disk.
2010-04-11 Jelmer VernooijMerge pack protocol receiver fix.
2010-04-11 Jelmer VernooijAdd DiskObjectStore.init.
2010-04-09 Tay Ray ChuanObjectStoreGraphWalker.ack: use non-recursive implement...
2010-04-02 Jelmer VernooijSupport progress argument to generate_pack_contents.
2010-04-02 Dave BorowitzPreviously, the word "type" was massively overloaded...
2010-04-01 Jelmer VernooijUse posixpath where possible.
2010-03-23 Jelmer VernooijImprove docstrings.
2010-03-23 Bruce DuncanIn threaded programs, more than one thread can try...
2010-03-12 Jelmer VernooijMake sure mode is initialized.
2010-03-07 Jelmer VernooijMerge Dave.
2010-03-04 Dave BorowitzAdd include-tag capability to server.
2010-03-04 Dave BorowitzAdd cgit compatibility testing framework.
2010-02-11 Jelmer VernooijAsk for forgiveness, not permission.
next