log

age author description
Sun, 25 Feb 2018 23:08:41 -0500 Augie Fackler py3: hunt down str(exception) instances and use util.forcebytestr
Sun, 25 Feb 2018 22:30:14 -0500 Augie Fackler subrepo: use util.forcebytestr() instead of str() on exception
Sun, 25 Feb 2018 22:29:28 -0500 Augie Fackler tests: add missing b prefixes in test-commit.t
Sun, 25 Feb 2018 22:28:52 -0500 Augie Fackler commitextras: fix on Python 3 by using sysstrs for __dict__ ops
Sun, 25 Feb 2018 22:06:53 -0500 Augie Fackler util: use pycompat.bytestr() instead of str()
Wed, 21 Feb 2018 22:47:47 +0900 Yuya Nishihara showconfig: allow multiple section.name selectors (issue5797)
Wed, 21 Feb 2018 23:02:39 +0900 Yuya Nishihara showconfig: use set to filter sections and entry names
Wed, 21 Feb 2018 22:20:27 +0900 Yuya Nishihara util: factor out shellsplit() function
Fri, 23 Feb 2018 23:09:58 +0900 Yuya Nishihara diff: do not split function name if character encoding is unknown
Sun, 25 Feb 2018 11:20:35 +0900 Yuya Nishihara histedit: use repo.revs() instead of repo.set() where revisions are needed
Sun, 25 Feb 2018 11:13:01 +0900 Yuya Nishihara acl: replace bare getpass.getuser() by platform function
Sat, 24 Feb 2018 11:21:14 -0800 Gregory Szorc context: remove basectx.__int__ (API)
Sat, 24 Feb 2018 11:17:10 -0800 Gregory Szorc patchbomb: resolve revs before evaluating %ld revset
Sat, 24 Feb 2018 11:04:21 -0800 Gregory Szorc histedit: resolve revs before evaluating %ld revset
Sat, 24 Feb 2018 11:20:24 -0800 Gregory Szorc split: use ctx.rev() instead of %d % ctx
Sat, 24 Feb 2018 11:14:28 -0800 Gregory Szorc commands: use ctx.rev() instead of %d % ctx
Sat, 24 Feb 2018 11:13:36 -0800 Gregory Szorc cmdutil: use ctx.rev() instead of %d % ctx
Sat, 24 Feb 2018 11:07:07 -0800 Gregory Szorc rebase: use ctx.rev() instead of %d % ctx
Sat, 24 Feb 2018 10:53:47 -0800 Gregory Szorc histedit: use ctx.rev() instead of %d % ctx
Sat, 24 Feb 2018 10:56:15 -0800 Gregory Szorc histedit: rename variables so they have "ctx" in them
Sat, 24 Feb 2018 10:51:13 -0800 Gregory Szorc cmdutil: use ctx.rev() instead of int(ctx)
Sat, 24 Feb 2018 10:48:24 -0800 Gregory Szorc templatekw: use ctx.rev() instead of casting context to int
Sat, 24 Feb 2018 16:18:40 +0530 Pulkit Goyal py3: fix handling of keyword arguments at more places
Sat, 24 Feb 2018 16:16:14 +0530 Pulkit Goyal py3: use '%d' for integers instead of '%s'
Sat, 24 Feb 2018 17:49:10 -0600 Kevin Bullock merge with stable
Sat, 24 Feb 2018 16:20:55 +0530 Pulkit Goyal py3: use '//' for integer division in hgweb/common.py
Sat, 24 Feb 2018 16:20:15 +0530 Pulkit Goyal py3: use util.forcebytestr to convert error messages to bytes
Sat, 24 Feb 2018 16:15:16 +0530 Pulkit Goyal py3: add b'' prefixes to config options in test/badserverext.py
Sat, 24 Feb 2018 16:07:45 +0530 Pulkit Goyal py3: replace file() with open()
Sat, 24 Feb 2018 16:06:21 +0530 Pulkit Goyal py3: make sure regexes are bytes
Sat, 24 Feb 2018 16:04:57 +0530 Pulkit Goyal py3: convert dict.items() to list explicitly
Sat, 24 Feb 2018 15:35:00 +0530 Pulkit Goyal py3: whitelist another 8 passing tests
Sat, 24 Feb 2018 01:22:15 +0530 Pulkit Goyal py3: use '//' for integer divisions
Sat, 24 Feb 2018 01:21:22 +0530 Pulkit Goyal py3: use "%d" for integers instead of "%s"
Sat, 24 Feb 2018 01:20:20 +0530 Pulkit Goyal py3: use util.forcebytestr instead of str to convert error messages
Sat, 24 Feb 2018 01:19:26 +0530 Pulkit Goyal py3: use pycompat.byteskwargs() to fix keyword arguments handling
Fri, 23 Feb 2018 17:57:04 -0800 Gregory Szorc setup: only allow Python 3 from a source checkout (issue5804) stable
Fri, 23 Feb 2018 20:50:10 -0500 Matt Harbison tests: add HTTP POST and PUT support to the $LOGDATE$ substitution
Fri, 23 Feb 2018 18:47:26 +0530 Pulkit Goyal py3: make regex bytes in hgweb/webcommands.py
Fri, 23 Feb 2018 18:23:51 +0530 Pulkit Goyal py3: replace types.NoneType with type(None)
Fri, 23 Feb 2018 18:12:20 +0530 Pulkit Goyal py3: add missing b'' in test-arbitraryfilectx.t
Fri, 23 Feb 2018 18:04:33 +0530 Pulkit Goyal py3: pass ctx.rev() instead of ctx in range()
Fri, 23 Feb 2018 18:03:58 +0530 Pulkit Goyal py3: add b'' prefixes in test-alias.t
Fri, 23 Feb 2018 17:26:45 +0530 Pulkit Goyal py3: add b'' prefixes in test-revset.t
Fri, 23 Feb 2018 17:25:51 +0530 Pulkit Goyal py3: make sure we use bytes in generate-working-copy-states.py
Fri, 23 Feb 2018 17:15:36 +0530 Pulkit Goyal py3: fix keyword arguments handling in hgext/acl.py
Fri, 23 Feb 2018 17:14:25 +0530 Pulkit Goyal py3: use pycompat.bytestr to convert str returned by getpass.getuser to bytes
Fri, 23 Feb 2018 16:57:17 +0530 Pulkit Goyal py3: add b'' prefixes in test-abort-checkin.t
Wed, 21 Feb 2018 23:43:23 +0530 Pulkit Goyal py3: add b'' prefixes in test-dispatch.py
Thu, 22 Feb 2018 20:04:42 -0500 Augie Fackler cleanup: say goodbye to manifestv2 format
Wed, 21 Feb 2018 16:47:39 -0800 Gregory Szorc wireproto: document the wonky push protocol for SSH
Wed, 21 Feb 2018 14:21:05 -0800 Gregory Szorc wireprototypes: move baseprotocolhandler from wireprotoserver
Wed, 21 Feb 2018 14:02:23 -0800 Gregory Szorc sshpeer: defer pipe buffering and stderr sidechannel binding
Wed, 21 Feb 2018 13:08:55 -0800 Gregory Szorc sshpeer: make pipe polling code more explicit
Mon, 19 Feb 2018 13:20:17 -0800 Gregory Szorc tests: store protocol payload in files
Wed, 21 Feb 2018 08:35:48 -0800 Gregory Szorc sshpeer: return framed file object when needed
Wed, 21 Feb 2018 08:33:50 -0800 Gregory Szorc sshpeer: move logic for sending a request into a new function
Mon, 19 Feb 2018 15:57:28 -0800 Gregory Szorc sshpeer: rename _recv and _send to _readframed and _writeframed
Wed, 21 Feb 2018 13:41:20 -0800 Gregory Szorc util: add a file object proxy that can read at most N bytes
Mon, 05 Feb 2018 15:03:51 +0100 Boris Feld patches: release the GIL while applying the patch