Re: Inconsistent HG_PENDING handling

2017-02-15 Thread FUJIWARA Katsunori
At Thu, 16 Feb 2017 00:51:11 +0900, FUJIWARA Katsunori wrote: > > At Thu, 16 Feb 2017 00:01:05 +0900, > FUJIWARA Katsunori wrote: > > > > At Mon, 13 Feb 2017 18:19:35 -0500, > > Augie Fackler wrote: > > > > > > (+foozy, marmoute for transaction musing) > > > > > > On Sun, Feb 12, 2017 at

Re: Inconsistent HG_PENDING handling

2017-02-15 Thread FUJIWARA Katsunori
At Thu, 16 Feb 2017 00:01:05 +0900, FUJIWARA Katsunori wrote: > > At Mon, 13 Feb 2017 18:19:35 -0500, > Augie Fackler wrote: > > > > (+foozy, marmoute for transaction musing) > > > > On Sun, Feb 12, 2017 at 07:06:49PM -0500, timeless wrote: > > > bookmarks.py > > > if 'HG_PENDING' in

Re: Inconsistent HG_PENDING handling

2017-02-15 Thread FUJIWARA Katsunori
At Mon, 13 Feb 2017 18:19:35 -0500, Augie Fackler wrote: > > (+foozy, marmoute for transaction musing) > > On Sun, Feb 12, 2017 at 07:06:49PM -0500, timeless wrote: > > bookmarks.py > > if 'HG_PENDING' in encoding.environ: > > try: > > bkfile =

Re: Inconsistent HG_PENDING handling

2017-02-13 Thread Augie Fackler
(+foozy, marmoute for transaction musing) On Sun, Feb 12, 2017 at 07:06:49PM -0500, timeless wrote: > bookmarks.py > if 'HG_PENDING' in encoding.environ: > try: > bkfile = repo.vfs('bookmarks.pending') > > dirstate.py > def _trypending(root, vfs, filename): > '''Open

Inconsistent HG_PENDING handling

2017-02-12 Thread timeless
bookmarks.py if 'HG_PENDING' in encoding.environ: try: bkfile = repo.vfs('bookmarks.pending') dirstate.py def _trypending(root, vfs, filename): '''Open file to be read according to HG_PENDING environment variable This opens '.pending' of specified 'filename' only