1
============================
2
Guidelines for modifying bzr
3
============================
7
(The current version of this document is available in the file ``HACKING``
8
in the source tree, or at http://bazaar-ng.org/hacking.html)
13
* New functionality should have test cases. Preferably write the
14
test before writing the code.
16
In general, you can test at either the command-line level or the
17
internal API level. Choose whichever is appropriate: if adding a
18
new command, or a new command option, then call through run_bzr().
19
It is not necessary to do both. Tests that test the command line level
20
are appropriate for checking the UI behaves well - bug fixes and
21
core improvements should be tested closer to the code that is doing the
22
work. Command line level tests should be placed in 'blackbox.py'.
24
* Before fixing a bug, write a test case so that it does not regress.
26
* Exceptions should be defined inside bzrlib.errors, so that we can
27
see the whole tree at a glance.
29
* Imports should be done at the top-level of the file, unless there is
30
a strong reason to have them lazily loaded when a particular
31
function runs. Import statements have a cost, so try to make sure
32
they don't run inside hot functions.
34
* Module names should always be given fully-qualified,
35
i.e. ``bzrlib.hashcache`` not just ``hashcache``.
40
If you change the behaviour of an API in an incompatible way, please
41
be sure to change its name as well. For instance, if I add a keyword
42
parameter to branch.commit - that's fine. On the other hand, if I add
43
a keyword parameter to branch.commit which is a *required* transaction
44
object, I should rename the api - i.e. to 'branch.commit_transaction'.
46
This will prevent users of the old api getting surprising results.
47
Instead, they will get an Attribute error as the api is missing, and
48
will know to update their code. If in doubt, just ask on #bzr.
53
If you change the behaviour of a command, please update its docstring
54
in bzrlib/commands.py. This is displayed by the 'bzr help' command.
56
If you make a user-visible change, please add a note to the NEWS file.
57
The description should be written to make sense to someone who's just
58
a user of bzr, not a developer: new functions or classes shouldn't be
59
mentioned, but new commands, changes in behaviour or fixed nontrivial
60
bugs should be listed. See the existing entries for an idea of what
67
Functions, methods, classes and modules should have docstrings
68
describing how they are used.
70
The first line of the docstring should be a self-contained sentence.
72
For the special case of Command classes, this acts as the user-visible
73
documentation shown by the help command.
75
The docstrings should be formatted as reStructuredText_ (like this
76
document), suitable for processing using the epydoc_ tool into HTML
79
.. _reStructuredText: http://docutils.sourceforge.net/rst.html
80
.. _epydoc: http://epydoc.sourceforge.net/
87
Please write PEP-8__ compliant code.
89
One often-missed requirement is that the first line of docstrings
90
should be a self-contained one-sentence summary.
92
__ http://www.python.org/peps/pep-0008.html
99
Functions, methods or members that are in some sense "private" are given
100
a leading underscore prefix. This is just a hint that code outside the
101
implementation should probably not use that interface.
103
We prefer class names to be concatenated capital words (``TestCase``)
104
and variables, methods and functions to be lowercase words joined by
105
underscores (``revision_id``, ``get_revision``).
107
For the purposes of naming some names are treated as single compound
108
words: "filename", "revno".
110
Consider naming classes as nouns and functions/methods as verbs.
116
``revision_id`` not ``rev_id`` or ``revid``
118
Functions that transform one thing to another should be named ``x_to_y``
119
(not ``x2y`` as occurs in some old code.)
125
(The strategy described here is what we want to get to, but it's not
126
consistently followed in the code at the moment.)
128
bzrlib is intended to be a generically reusable library. It shouldn't
129
write messages to stdout or stderr, because some programs that use it
130
might want to display that information through a GUI or some other
133
We can distinguish two types of output from the library:
135
1. Structured data representing the progress or result of an
136
operation. For example, for a commit command this will be a list
137
of the modified files and the finally committed revision number
140
These should be exposed either through the return code or by calls
141
to a callback parameter.
143
A special case of this is progress indicators for long-lived
144
operations, where the caller should pass a ProgressBar object.
146
2. Unstructured log/debug messages, mostly for the benefit of the
147
developers or users trying to debug problems. This should always
148
be sent through ``bzrlib.trace`` and Python ``logging``, so that
149
it can be redirected by the client.
151
The distinction between the two is a bit subjective, but in general if
152
there is any chance that a library would want to see something as
153
structured data, we should make it so.
155
The policy about how output is presented in the text-mode client
156
should be only in the command-line tool.
160
In general tests should be placed in a file named test_FOO.py where
161
FOO is the logical thing under test. That file should be placed in the
162
tests subdirectory under the package being tested.
164
For example, tests for merge3 in bzrlib belong in bzrlib/tests/test_merge3.py.
169
Currently, bzr selftest is used to invoke tests.
170
You can provide a pattern argument to run a subset. For example,
171
to run just the whitebox tests, run::
173
bzr selftest -v whitebox
177
Errors and exceptions
178
=====================
187
Integer identifier for a revision on the main line of a branch.
188
Revision 0 is always the null revision; others are 1-based
189
indexes into the branch's revision history.