mercurial/branchmap.py
Mon, 18 Mar 2019 19:01:29 +0300 Pulkit Goyal branchcache: rename itervalues() to iterheads()
Mon, 18 Mar 2019 18:59:38 +0300 Pulkit Goyal branchmap: remove the dict interface from the branchcache class (API)
Sat, 02 Mar 2019 05:24:35 +0530 Pulkit Goyal py3: convert filtername to str if it's None
Tue, 26 Feb 2019 17:26:33 +0300 Pulkit Goyal branchmap: prevent reading the file twice through different iterators
Mon, 25 Feb 2019 16:49:01 +0300 Pulkit Goyal branchcache: move loading of branch names and nodes into it's own function
Wed, 20 Feb 2019 19:28:51 -0500 Augie Fackler cleanup: use () to wrap long lines instead of \
Mon, 11 Feb 2019 16:34:48 +0300 Pulkit Goyal branchmap: improve doc about BranchMapCache class
Mon, 11 Feb 2019 15:41:08 +0300 Pulkit Goyal branchmap: decode a label only once
Mon, 11 Feb 2019 15:34:35 +0300 Pulkit Goyal branchmap: move __init__ up in branchcache class
Mon, 21 Jan 2019 17:37:33 +0000 Martijn Pieters branchmap: encapsulate cache updating in the map itself
Mon, 21 Jan 2019 17:41:59 +0000 Martijn Pieters branchmap: add some clarifications and clean up flow
Mon, 21 Jan 2019 16:37:23 +0000 Martijn Pieters branchmap: updating triggers a write
Mon, 21 Jan 2019 16:04:48 +0000 Martijn Pieters branchmap: make branchcache responsible for reading
Mon, 21 Jan 2019 15:29:14 +0000 Martijn Pieters branchmap: rename partial -> bcache
Wed, 21 Nov 2018 17:17:26 +0300 Pulkit Goyal branchmap: build the revbranchcache._namesreverse() only when required
Tue, 23 Oct 2018 21:11:13 +0900 Yuya Nishihara branchmap: do not specify changelog as an argument
Fri, 19 Oct 2018 16:34:45 +0200 Gregory Szorc branchmap: avoid changelog and attribute lookups in replacecache()
Fri, 19 Oct 2018 16:16:17 +0200 Gregory Szorc branchmap: pass changelog into branchmap functions
Fri, 31 Aug 2018 19:58:41 +0100 Martijn Pieters branchmap: remove redundant sort
Sat, 13 Oct 2018 10:58:06 +0200 Yuya Nishihara py3: pass in system string to vars(branchmap).__contains__()
Fri, 17 Aug 2018 10:51:05 +0900 Yuya Nishihara branchmap: explicitly convert file into iterator
Fri, 17 Aug 2018 10:25:39 +0900 Yuya Nishihara branchmap: close cache file properly
Fri, 17 Aug 2018 10:24:29 +0900 Yuya Nishihara branchmap: strip '\n' read from cache file as before
Mon, 13 Aug 2018 21:22:14 +0100 Martijn Pieters branchmap: load branchmap as an iterable
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Thu, 18 Jan 2018 14:21:05 +0100 Boris Feld revbranchcache: add a public function to update the data
Wed, 28 Feb 2018 19:54:49 +0530 Pulkit Goyal py3: convert error messages to bytes using util.forcebytestr()
Sat, 24 Feb 2018 16:20:15 +0530 Pulkit Goyal py3: use util.forcebytestr to convert error messages to bytes
Wed, 14 Feb 2018 21:29:27 +0900 Yuya Nishihara py3: stringify IOError/OSError without loosing local character
Tue, 13 Feb 2018 08:41:42 -0500 Augie Fackler branchmap: wrap builtin exception in bytes for logging
Wed, 17 Jan 2018 20:38:10 -0500 Augie Fackler branchmap: make error messages consistent between Python 2 and 3
Mon, 18 Dec 2017 17:50:02 +0530 Pulkit Goyal repoview: add a new filtername for accessing hidden commits
Sat, 30 Sep 2017 07:42:59 -0400 Augie Fackler branchmap: remove superfluous pass statements
Thu, 31 Aug 2017 18:24:08 +0300 the31k branches: correctly show inactive multiheaded branches
Thu, 10 Aug 2017 20:47:19 -0700 Mike Hommey branchmap: revert c34532365b38 for Python 2.7 compatibility stable
Sat, 15 Jul 2017 22:42:50 +0200 Boris Feld cachevfs: migration the revbranchcache to 'cachevfs'
Sat, 15 Jul 2017 22:42:31 +0200 Boris Feld cachevfs: use the new vfs in when computing branchmap cache
Sat, 13 May 2017 11:58:08 -0700 Gregory Szorc branchmap: remove use of buffer() to support Python 2.6
Wed, 03 May 2017 11:16:55 +0900 Yuya Nishihara cleanup: remove useless re-raises of KeyboardInterrupt
Sun, 19 Mar 2017 01:01:25 -0400 Augie Fackler branchmap: be more careful about using %d on ints
Wed, 15 Mar 2017 15:48:57 -0700 Durham Goode branchmap: handle nullrev in setcachedata
Sun, 12 Mar 2017 19:47:51 -0400 Augie Fackler branchmap: fix python 2.6 by using util.buffer() instead of passing bytearray
Sun, 12 Mar 2017 12:17:30 -0700 Mads Kiilerich rbc: empty (and invalid) rbc-names file should give an empty name list
Wed, 19 Oct 2016 02:46:35 +0200 Mads Kiilerich rbc: use struct unpack_from and pack_into instead of unpack and pack
Sun, 12 Mar 2017 11:47:02 -0700 Yuya Nishihara py3: drop unused aliases to array.array which are replaced with bytearray
Sun, 12 Mar 2017 00:42:46 -0500 Augie Fackler branchmap: stringify int in a portable way
Sun, 12 Mar 2017 00:49:19 -0500 Augie Fackler branchmap: don't use buffer() on Python 3
Sun, 12 Mar 2017 03:32:21 -0400 Augie Fackler py3: use bytearray() instead of array('c', ...) constructions
Wed, 15 Feb 2017 13:17:39 -0800 Simon Farnsworth mercurial: switch to util.timer for all interval timings
Fri, 05 Aug 2016 15:01:16 +0200 Pierre-Yves David branchmap: remove extra indent
Fri, 05 Aug 2016 15:00:53 +0200 Pierre-Yves David branchmap: simplify error handlind when writing rev branch cache
Fri, 05 Aug 2016 14:57:16 +0200 Pierre-Yves David branchmap: acquires lock before writting the rev branch cache
Fri, 05 Aug 2016 14:54:46 +0200 Pierre-Yves David branchmap: preparatory indent of indent the branch rev writing code
Mon, 18 Jul 2016 22:25:09 +0200 Mads Kiilerich rbc: fix superfluous rebuilding from scratch - don't abuse self._rbcnamescount stable
Mon, 18 Jul 2016 22:22:38 +0200 Mads Kiilerich rbc: fix invalid rbc-revs entries caused by missing cache growth
Sat, 12 Mar 2016 16:08:19 -0800 Gregory Szorc branchmap: remove unused exception variable
Sun, 13 Mar 2016 02:06:23 +0100 Mads Kiilerich cache: rebuild branch cache from scratch when inconsistencies are detected
Sun, 13 Mar 2016 02:06:22 +0100 Mads Kiilerich cache: safer handling of failing seek when writing revision branch cache
Sun, 13 Mar 2016 02:06:21 +0100 Mads Kiilerich cache: remove branch revision file before rewriting the branch name file
Mon, 07 Mar 2016 17:26:47 -0800 Durham Goode branchmap: check node against changelog instead of repo
less more (0) -100 -60 tip