keyword: do not postpone commit hooks
With
0e64d814d7d0 in place, this hack is not needed any more.
inotify/inserve: implement --timeout-idle option (
issue885)
hg inserve was ignoring and miscomputing the --timeout-idle option (seconds
vs. minutes).
Thanks to Jesse Glick for the bugreport and the initial patch.
regression: missing arg from
24ce8f0c0a39 dirstate.{walk,status} changes
run commit and update hooks after command completion (
issue1827)
Previously, the working dir state hadn't been written when these
hooks were invoked, so external commands couldn't see all changes.
http: len(x) fails if it doesn't fit into an int, use __len__() instead
len(x) raises OverflowError if it's bigger than 2**31-1, we need to call
__len__() ourself instead.