~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: John Arbash Meinel
  • Date: 2007-04-28 15:04:17 UTC
  • mfrom: (2466 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2566.
  • Revision ID: john@arbash-meinel.com-20070428150417-trp3pi0pzd411pu4
[merge] bzr.dev 2466

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
Documentation
134
134
=============
135
135
 
136
 
If you change the behaviour of a command, please update its docstring
137
 
in bzrlib/commands.py.  This is displayed by the 'bzr help' command.
 
136
When you change bzrlib, please update the relevant documentation for the
 
137
change you made: Changes to commands should update their help, and
 
138
possibly end user tutorials; changes to the core library should be
 
139
reflected in API documentation.
 
140
 
 
141
Commands
 
142
--------
 
143
 
 
144
The docstring of a command is used by ``bzr help`` to generate help output
 
145
for the command. The list 'takes_options' attribute on a command is used by
 
146
``bzr help`` to document the options for the command - the command
 
147
docstring does not need to document them. Finally, the '_see_also'
 
148
attribute on a command can be used to reference other related help topics.
138
149
 
139
150
NEWS file
140
151
---------
431
442
 
432
443
  ./bzr selftest -v blackbox
433
444
 
434
 
To skip a particular test (or set of tests), you need to use a negative
435
 
match, like so::
436
 
 
437
 
  ./bzr selftest '^(?!.*blackbox)'  
 
445
To skip a particular test (or set of tests), use the --exclude option
 
446
(shorthand -x) like so::
 
447
 
 
448
  ./bzr selftest -v -x blackbox  
 
449
 
 
450
To list tests without running them, use the --list-only option like so::
 
451
 
 
452
  ./bzr selftest --list-only
 
453
 
 
454
This option can be combined with other selftest options (like -x) and
 
455
filter patterns to understand their effect.
438
456
 
439
457
 
440
458
Errors and exceptions
475
493
 
476
494
 
477
495
 
 
496
Debugging
 
497
=========
 
498
 
 
499
Bazaar has a few facilities to help debug problems by going into pdb_, the
 
500
Python debugger.
 
501
 
 
502
.. _pdb: http://docs.python.org/lib/debugger-commands.html
 
503
 
 
504
If the ``BZR_PDB`` environment variable is set 
 
505
then bzr will go into pdb post-mortem mode when an unhandled exception
 
506
occurs.
 
507
 
 
508
If you send a SIGQUIT signal to bzr, which can be done by pressing C-\ on Unix,
 
509
bzr will go into the debugger immediately.  You can continue execution by
 
510
typing ``c``.  This can be disabled if necessary by setting the
 
511
environment variable ``BZR_SIGQUIT_PDB=0``.
 
512
 
 
513
 
 
514
 
478
515
Jargon
479
516
======
480
517
 
643
680
so, please reply and say so.)
644
681
 
645
682
 
 
683
C Extension Modules
 
684
===================
 
685
 
 
686
We write some extensions in C using pyrex. We design these to work in
 
687
three scenarios:
 
688
 
 
689
 * User with no C compiler
 
690
 * User with C compiler
 
691
 * Developers
 
692
 
 
693
The recommended way to install bzr is to have a C compiler so that the
 
694
extensions can be built, but if no C compiler is present, the pure python
 
695
versions we supply will work, though more slowly.
 
696
 
 
697
For developers we recommend that pyrex be installed, so that the C
 
698
extensions can be changed if needed.
 
699
 
 
700
For the C extensions, the extension module should always match the
 
701
original python one in all respects (modulo speed). This should be
 
702
maintained over time.
 
703
 
 
704
To create an extension, add rules to setup.py for building it with pyrex,
 
705
and with distutils. Now start with an empty .pyx file. At the top add
 
706
"include 'yourmodule.py'". This will import the contents of foo.py into this 
 
707
file at build time - remember that only one module will be loaded at
 
708
runtime. Now you can subclass classes, or replace functions, and only your
 
709
changes need to be present in the .pyx file.
 
710
 
 
711
Note that pyrex does not support all 2.4 programming idioms, so some
 
712
syntax changes may be required. I.e. 
 
713
 
 
714
 - 'from foo import (bar, gam)' needs to change to not use the brackets. 
 
715
 - 'import foo.bar as bar' needs to be 'import foo.bar; bar = foo.bar' 
 
716
 
 
717
If the changes are too dramatic, consider
 
718
maintaining the python code twice - once in the .pyx, and once in the .py,
 
719
and no longer including the .py file.
 
720
 
646
721
Making installers for OS Windows
647
722
================================
648
723
To build a win32 installer, see the instructions on the wiki page: