__init__.py |
starts a cmdserver for the given path (or for a repository found
in the cwd). HGENCODING is set to the given encoding. configs is a
list of key, value, similar to those passed to hg --config.
|
1596 |
client.py |
cbout is a function that will be called with the stdout data of
the command as it runs. Call with None to stop getting call backs.
|
66465 |
context.py |
A changecontext object makes access to data related to a particular
changeset convenient. |
6895 |
error.py |
|
405 |
merge.py |
These can be used as the cb argument to hgclient.merge() to control the
behaviour when Mercurial prompts what to do with regard to a specific file,
e.g. when one parent modified a file and the other removed it.
|
591 |
templates.py |
|
127 |
util.py |
list(grouper(2, range(4))) -> [(0, 1), (2, 3)] |
6379 |