| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: bzr | Distribution: openSUSE 10.3 (i586) |
| Version: 0.18 | Vendor: SUSE LINUX Products GmbH, Nuernberg, Germany |
| Release: 18 | Build date: Sat Sep 22 04:21:33 2007 |
| Group: Development/Tools/Version Control | Build host: gozinto.suse.de |
| Size: 13003560 | Source RPM: bzr-0.18-18.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: http://bazaar-vcs.org/ | |
| Summary: Friendly distributed version control system | |
Bazaar-NG is a distributed revision control system that is powerful,
friendly,and scalable. It is the successor of the bazaar RCS which, in
turn, was a user-friendly reimplementation of GNU Arch.
Authors:
--------
Martin Pool <mbp@canonical.com>
Robert Collins <robert.collins@canonical.com>
GPL v2 or later
internal MD5: 84c4f7a1f2b8a1499f195c14b3f6aa56
GPG
* Mon Jul 30 2007 - kssingvo@suse.de
- upgrade to version 0.18:
* Fix 'bzr add' crash under Win32
* Do not suppress pipe errors, etc. in non-display commands
* Display a useful error message when the user requests to
annotate a file that is not present in the specified revision.
* Commands that use status flags now have a reference to 'help
status-flags'.
* Work around python-2.4.1 inhability to correctly parse the
authentication header.
* Use exact encoding for merge directives.
* Fix tempfile permissions error in smart server tar bundling
under Windows.
* Fix detection of directory entries in the inventory.
* Fix handling of http code 400: Bad Request When issuing too
many ranges.
* Issue a CONNECT request when connecting to an https server via
a proxy to enable SSL tunneling.
* Fix ``bzr log -r`` to support selecting merge revisions, both
individually and as part of revision ranges.
* Don't leave cruft behind when failing to acquire a lockdir.
* Don't use the '-f' strace option during tests.
* Warn when setting ``push_location`` to a value that will be
masked by locations.conf.
* Fix commit ordering in corner case
* Make annotate behave in a non-ASCII world
* The --lsprof-file option now dumps a text rendering of the
profiling information if the filename ends in ".txt". It will
also convert the profiling information to a format suitable for
KCacheGrind if the output filename ends in ".callgrind". Fixes
to the lsprofcalltree conversion process by Jean Paul Calderone
and Itamar were also merged. See
http://ddaa.net/blog/python/lsprof-calltree.
* ``info`` now defaults to non-verbose mode, displaying only
paths and abbreviated format info. ``info -v`` displays all
the information formerly displayed by ``info``.
* ``bzr missing`` now has better option names ``--this`` and
``--other``.
* The internal ``weave-list`` command has become
``versionedfile-list``, and now lists knits as well as weaves.
* Automatic merge base selection uses a faster algorithm that
chooses better bases in criss-cross merge situations
* Progress reporting in ``commit`` has been improved. The various
logical stages are now reported on as follows, namely:
+ Collecting changes [Entry x/y] - Stage n/m
+ Saving data locally - Stage n/m
+ Uploading data to master branch - Stage n/m
+ Updating the working tree - Stage n/m
+ Running post commit hooks - Stage n/m
number of stages is adjusted accordingly.
Each hook that is run after commit is listed with a name (as
hooks can be slow it is useful feedback).
* Various operations that are now faster due to avoiding
unnecessary topological sorts.
* Make merge directives robust against broken bundles.
* The lsprof filename note is emitted via trace.note(), not
standard
* ``bzrlib`` now exports explicit API compatibility information
to assist library users and plugins. See the ``bzrlib.api``
module for details.
* Remove unnecessary lock probes when acquiring a lockdir.
* ``bzr --version`` now shows the location of the bzr log file,
which is especially useful on Windows.
* -D now supports hooks to get debug tracing of hooks (though its
currently minimal in nature).
* Long log format reports deltas on merge revisions.
* Make initial push over ftp more resilient.
* Print a summary of changes for update just like pull does.
* Add a -Dhpss option to trace smart protocol requests and
responses.
* Relocate TestCaseWithRepository to be more central.
* ``bzrlib.add.smart_add_tree`` will no longer perform glob
expansion on win32. Callers of the function should do this and
use the new ``MutableTree.smart_add`` method instead.
* ``bzrlib.add.glob_expand_for_win32`` is now
``bzrlib.win32utils.glob_expand``.
* ``bzrlib.add.FastPath`` is now private and moved to
``bzrlib.mutabletree._FastPath``.
* ``LockDir.wait`` removed.
* The ``SmartServer`` hooks API has changed for the
``server_started`` and ``server_stopped`` hooks. The first
parameter is now an iterable of backing URLs rather than a
single URL. This is to reflect that many URLs may map to the
external URL of the server. E.g. the server interally may have
a chrooted URL but also the local file:// URL will be at the
same location.
* New SMTPConnection class to unify email handling.
* Fix documentation of BzrError.
* Make BzrBadParameter an internal error.
* Remove use of 'assert False' to raise an exception
unconditionally.
* Give a cleaner error when failing to decode knit index entry.
* TreeConfig would mistakenly search the top level when asked for
options from a section. It now respects the section argument
and only searches the specified section.
* Improve ``make api-docs`` output.
* Use os.lstat rather than os.stat for osutils.make_readonly and
osutils.make_writeable. This makes the difftools plugin more
robust when dangling symlinks are found.
* New ``-Dlock`` option to log (to ~/.bzr.log) information on
when lockdirs are taken or released.
* ``bzrlib`` Hooks are now nameable using ``Hooks.name_hook``.
This allows a nicer UI when hooks are running as the current
hook can be displayed.
* ``Transport.get`` has had its interface made more clear for
ease of use. Retrieval of a directory must now fail with either
'PathError' at open time, or raise 'ReadError' on a read.
* New method ``_maybe_expand_globs`` on the ``Command`` class for
dealing with unexpanded glob lists - e.g. on the win32
platform. This was moved from
``bzrlib.add._prepare_file_list``.
* ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are
now deprecated in favour of ``MutableTree.smart_add``.
* New method ``external_url`` on Transport for obtaining the url
to hand to external processes.
* Teach windows installers to build pyrex/C extensions.
* Removed the ``--keep-output`` option from selftest and clean up
test directories as they're used. This reduces the IO load
from running the test suite and cuts the time by about half.
* Add scenarios as a public attribute on the TestAdapter classes
to allow modification of the generated scenarios before
adaption and easier testing.
* New testing support class ``TestScenarioApplier`` which
multiplies out a single teste by a list of supplied scenarios.
* Setting ``repository_to_test_repository`` on a
repository_implementations test will cause it to be called
during repository creation, allowing the testing of repository
classes which are not based around the Format concept. For
example a repository adapter can be tested in this manner, by
altering the repository scenarios to include a scenario that
sets this attribute during the test parameterisation in
``bzrlib.tests.repository.repository_implementations``.
* Clean up many of the APIs for blackbox testing of Bazaar. The
standard interface is now self.run_bzr. The command to run can
be passed as either a list of parameters, a string containing
the command line, or (deprecated) varargs parameters.
* The base TestCase now isolates tests from -D parameters by
clearing ``debug.debug_flags`` and restores it afterwards.
* Add a relpath parameter to get_transport methods in test
framework to avoid useless cloning.
* Wed Jul 04 2007 - kssingvo@suse.de
- upgrade to version 0.17:
* Faster status, diff, commit, branch and checkout operations
* numerous bug fixes
* better documentation.
* Fix crash of commit due to wrong lookup of filesystem encoding.
* Revert logging just to stderr in commit as broke unicode
filenames.
* There are two new help topics, working-trees and repositories
that attempt to explain these concepts
* Added ``bzr log --limit`` to report a limited number of
revisions.
* Revert does not try to preserve file contents that were
originally produced by reverting to a historical revision.
* ``bzr log --short`` now includes ``[merge]`` for revisions
which have more than one parent. This is a small improvement to
help understanding what changes have occurred
* TreeTransform avoids many renames when contructing large trees,
improving speed. 3.25x speedups have been observed for
construction of kernel-sized-trees, and checkouts are 1.28x
faster.
* Commit on large trees is now faster. In my environment, a
commit of a small change to the Mozilla tree (55k files) has
dropped from 66 seconds to 32 seconds. For a small tree of 600
files, commit of a small change is 33% faster.
* Clean up the ``WorkingTree4._iter_changes()`` internal loops as
well as ``DirState.update_entry()``. This optimizes the core
logic for ``bzr diff`` and ``bzr status`` significantly
improving the speed of both.
* The tutorial has been improved.
* Better error message for selected file commit of merges.
* Updated bash completion.
* ``bzr push`` should only connect to the remote location one
time. We have been connecting 3 times because we forget to pass
around the Transport object. This adds
``BzrDir.clone_on_transport()``, so that we can pass in the
Transport that we already have.
* ``DirState.set_state_from_inventory()`` needs to properly order
based on split paths, not just string paths.
* Let TestUIFactoy encode the password prompt with its own
stdout.
* pycurl should take use the range header that takes the range
hint into account.
* WorkingTree4.get_file_sha1 no longer raises an exception when
invoked on a missing file.
* WorkingTree.remove works correctly with tree references, and
when pwd is not the tree root.
* Merge no longer fails when a file is renamed in one tree and
deleted in the other.
* ``revision-info`` now accepts dotted revnos, doesn't require a
tree, and defaults to the last revision
* Tests no longer fail when BZR_REMOTE_PATH is set in the
environment.
* ``bzr branch -r revid:foo`` can be used to branch any revision
in your repository. (Previously Branch6 only supported
revisions in your mainline).
* 'branch lp:projname' now creates ./projname as expected.
* Rework of LogFormatter API to provide beginning/end of log
hooks and to encapsulate the details of the revision to be
logged in a LogRevision object. In long log formats, merge
revision ids are only shown when --show-ids is specified, and
are labelled "revision-id:", as per mainline revisions, instead
of "merged:".
* New ``BranchBuilder`` API which allows the construction of
particular histories quickly. Useful for testing and
potentially other applications too.
- removed HACKING from %doc: no longer existend
* Thu May 10 2007 - kssingvo@suse.de
- upgrade to version 0.16:
* Handle when you have 2 directories with similar names, but one
has a hyphen. (``'abc'`` versus ``'abc-2'``). The
WT4._iter_changes iterator was using direct comparison and
``'abc/a'`` sorts after ``'abc-2'``, but ``('abc', 'a')`` sorts
before ``('abc-2',)``.
* Handle when someone renames a file on disk without telling bzr.
Previously we would report the first file as missing, but not
show the new unknown file.
* Avoid error when running hooks after pulling into or pushing
from a branch bound to a smartserver branch.
* Handle the case when you delete a file, and then rename another
file on top of it. Also handle the case of ``bzr rm --keep
foo``. ``bzr status`` should show the removed file and an
unknown file in its place.
* Bundles properly read and write revision properties that have
an empty value. And when the value is not ASCII.
* Fix the bzr commit message to be in text mode.
* Also handle when you rename a file and create a file where it
used to be.
* ``WorkingTree4._iter_changes`` should not descend into
unversioned directories.
* ``bzr remove`` and ``bzr rm`` will now remove the working file,
if it could be recovered again. This has been done for
consistency with svn and the unix rm command. The old
``remove`` behaviour has been retained in the new option ``bzr
remove --keep``, which will just stop versioning the file, but
not delete it. ``bzr remove --force`` have been added which
will always delete the files. ``bzr remove`` is also more
verbose.
* Merge directives can now be supplied as input to `merge` and
`pull`, like bundles can.
* Sending the SIGQUIT signal to bzr, which can be done on Unix by
pressing Control-Backslash, drops bzr into a debugger. Type
``'c'`` to continue. This can be disabled by setting the
environment variable ``BZR_SIGQUIT_PDB=0``.
* selftest now supports --list-only to list tests instead of
running them.
* selftest now supports --exclude PATTERN (or -x PATTERN) to
exclude tests with names that match that regular expression.
* selftest now supports --randomize SEED to run tests in a random
order. SEED is typically the value 'now' meaning 'use the
current time'.
* New option ``--fixes`` to commit, which stores bug fixing
annotations as revision properties. Built-in support for
Launchpad, Debian, Trac and Bugzilla bug trackers.
* New API, ``bzrlib.bugtracker.tracker_registry``, for adding
support for other bug trackers to ``fixes``.
* ``selftest`` has new short options ``-f`` and ``-1``.
* ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner
loop into using local variables instead of going through
``self._var``. Improves the time to ``merge_sort`` a 10k
revision graph by approximately 40% (~700->400ms).
* ``make docs`` now creates a man page at ``man1/bzr.1`` fixing
bug 107388.
* ``bzr help`` now provides cross references to other help topics
using the _see_also facility on command classes. Likewise the
bzr_man documentation, and the bzr.1 man page also include this
information.
* Tags are now included in logs, that use the long log formatter.
* ``bzr help`` provides a clearer message when a help topic
cannot be found.
* ``bzr help`` now accepts optional prefixes for command help.
The help for all commands can now be found at ``bzr help
commands/COMMANDNAME`` as well as ``bzr help COMMANDNAME``
(which only works for commands where the name is not the same
as a more general help topic).
* ``bzr help PLUGINNAME`` will now return the module docstring
from the plugin PLUGINNAME.
* New help topic ``urlspec`` which lists the availables
transports.
* doc/server.txt updated to document the default bzr:// port and
also update the blurb about the hpss' current status.
* ``bzr serve`` now listens on interface 0.0.0.0 by default,
making it serve out to the local LAN (and anyone in the world
that can reach the machine running ``bzr serve``.
* A new smart server protocol version has been added. It
prefixes requests and responses with an explicit version
identifier so that future protocol revisions can be dealt with
gracefully.
* The bzr protocol version 2 indicates success or failure in
every response without depending on particular commands
encoding that consistently, allowing future client refactorings
to be much more robust about error handling.
* The smart protocol over HTTP client has been changed to always
post to the same ``.bzr/smart`` URL under the original location
when it can. This allows HTTP servers to only have to pass
URLs ending in .bzr/smart to the smart server handler, and not
arbitrary ``.bzr/*/smart`` URLs.
* digest authentication is now supported for proxies and HTTP by
the urllib based http implementation. Tested against Apache
2.0.55 and Squid 2.6.5. Basic and digest authentication are
handled coherently for HTTP and proxy: if the user is provided
in the url (bzr command line for HTTP, proxy environment
variables for proxies), the password is prompted for (only
once). If the password is provided, it is taken into account.
Once the first authentication is successful, all further
authentication roundtrips are avoided by preventively setting
the right authentication header(s).
* bzrlib API compatability with 0.8 has been dropped, cleaning up
some code paths.
* Change the format of chroot urls so that they can be safely
manipulated by generic url utilities without causing the
resulting urls to have escaped the chroot. A side effect of
this is that creating a chroot requires an explicit action
using a ChrootServer.
* Deprecate ``Branch.get_root_id()`` because branches don't have
root ids, rather than fixing bug #96847.
* ``WorkingTree.apply_inventory_delta`` provides a better
alternative to ``WorkingTree._write_inventory``.
* Convenience method ``TestCase.expectFailure`` ensures that
known failures do not silently pass.
* ``Transport.local_abspath`` now raises ``NotLocalUrl`` rather
than ``TransportNotPossible``.
* New SmartServer hooks facility. There are two initial hooks
documented in ``bzrlib.transport.smart.SmartServerHooks``. The
two initial hooks allow plugins to execute code upon server
startup and shutdown.
* SmartServer in standalone mode will now close its listening
socket when it stops, rather than waiting for garbage
collection. This primarily fixes test suite hangs when a test
tries to connect to a shutdown server. It may also help improve
behaviour when dealing with a server running on a specific port
(rather than dynamically assigned ports).
* Move most SmartServer code into a new package, bzrlib/smart.
bzrlib/transport/remote.py contains just the Transport classes
that used to be in bzrlib/transport/smart.py.
* urllib http implementation avoid roundtrips associated with 401
(and 407) errors once the authentication succeeds.
* urlib http now supports querying the user for a proxy password
if needed. Realm is shown in the prompt for both HTTP and proxy
authentication when the user is required to type a password.
* Renamed SmartTransport (and subclasses like SmartTCPTransport)
to RemoteTransport (and subclasses to RemoteTCPTransport, etc).
This is more consistent with its new home in
``bzrlib/transport/remote.py``, and because it's not really a
"smart" transport, just one that does file operations via
remote procedure calls.
* The ``lock_write`` method of ``LockableFiles``, ``Repository``
and ``Branch`` now accept a ``token`` keyword argument, so that
separate instances of those objects can share a lock if it has
the right token. (Andrew Bennetts, Robert Collins)
* New method ``get_branch_reference`` on ``BzrDir`` allows the
detection of branch references - which the smart server
component needs.
* The Repository API ``make_working_trees`` is now permitted to
return False when ``set_make_working_trees`` is not implemented
- previously an unimplemented ``set_make_working_trees``
implied the result True from ``make_working_trees``. This has
been changed to accomodate the smart server, where it does not
make sense (at this point) to ever make working trees by
default.
* Command objects can now declare related help topics by having
_see_also set to a list of related topic.
* ``bzrlib.help`` now delegates to the Command class for Command
specific help.
* New class ``TransportListRegistry``, derived from the Registry
class, which simplifies tracking the available Transports.
* New function ``Branch.get_revision_id_to_revno_map`` which will
return a dictionary mapping revision ids to dotted revnos.
Since dotted revnos are defined in the context of the branch
tip, it makes sense to generate them from a ``Branch`` object.
* Fix the 'Unprintable error' message display to use the repr of
the exception that prevented printing the error because the str
value for it is often not useful in debugging (e.g.
KeyError('foo') has a str() of 'foo' but a repr of
'KeyError('foo')' which is much more useful.
* ``urlutils.normalize_url`` now unescapes unreserved characters,
such as "~".
* Remove ``--verbose`` from ``bzr bundle``. It didn't work
anyway. (Robert Widhopf-Fenk, #98591)
* Remove ``--basis`` from the checkout/branch commands - it
didn't work properly and is no longer beneficial.
* Don't produce encoding error when adding duplicate files.
* Fix ``bzr log <file>`` so it only logs the revisions that
changed the file, and does it faster.
* Fix ``InterDirstateTre._iter_changes`` to handle when we come
across an empty versioned directory, which now has files in it.
* Teach ``common_ancestor`` to shortcut when the tip of one
branch is inside the ancestry of the other. Saves a lot of
graph processing (with an ancestry of 16k revisions, ``bzr
merge ../already-merged`` changes from 2m10s to 13s).
* Fix ``show_diff_trees`` to handle the case when a file is
modified, and the containing directory is renamed. (The file
path is different in this versus base, but it isn't marked as a
rename).
* FTP now works even when the FTP server does not support atomic
rename.
* Correct handling in bundles and merge directives of timezones
with that are not an integer number of hours offset from UTC.
Always represent the epoch time in UTC to avoid problems with
formatting earlier times on win32.
* Typo in the help for ``register-branch`` fixed.
* "dirstate" and "dirstate-tags" formats now produce branches
compatible with old versions of bzr.
* Handle moving a directory when children have been added,
removed, and renamed.
* Don't preventively use basic authentication for proxy before
receiving a 407 error. Otherwise people willing to use other
authentication schemes may expose their password in the clear
(or nearly). This add one roundtrip in case basic
authentication should be used, but plug the security hole.
* Handle http and proxy digest authentication.
* Added ``bzrlib.strace.strace`` which will strace a single
callable and return a StraceResult object which contains just
the syscalls involved in running it.
* New test method ``reduceLockdirTimeout`` to drop the default
(ui-centric) default time down to one suitable for tests.
* Add new ``vfs_transport_factory`` attribute on tests which
provides the common vfs backing for both the readonly and
readwrite transports. This allows the RemoteObject tests to
back onto local disk or memory, and use the existing
``transport_server`` attribute all tests know about to be the
smart server transport. This in turn allows tests to
differentiate between 'transport to access the branch', and
'transport which is a VFS' - which matters in Remote* tests.
* The ``make_branch_and_tree`` method for tests will now create a
lightweight checkout for the tree if the
``vfs_transport_factory`` is not a LocalURLServer.
* Branch implementation tests have been audited to ensure that
all urls passed to Branch APIs use proper urls, except when
local-disk paths are intended. This is so that tests correctly
access the test transport which is often not equivalent to
local disk in Remote* tests. As part of this many tests were
adjusted to remove dependencies on local disk access.
* Mark bzrlib.tests and bzrlib.tests.TestUtil as providing
assertFOO helper functions by adding a ``__unittest`` global
attribute.
* Refactored proxy and authentication handling to simplify the
implementation of new auth schemes for both http and proxy.
- made necessary adapations in specfile
* Wed Apr 04 2007 - kssingvo@suse.de
- upgrade to version 0.15:
* Handle incompatible repositories as a user issue when fetching.
* Don't give a recommendation to upgrade when branching or
checking out a branch that contains an old-format working tree.
* A warning is now displayed when opening working trees in older
formats, to encourage people to upgrade to WorkingTreeFormat4.
* HTTP redirections are now taken into account when a branch (or a
bundle) is accessed for the first time. A message is issued at each
redirection to inform the user. In the past, http redirections were
silently followed for each request which significantly degraded the
performances. The http redirections are not followed anymore by
default, instead a RedirectRequested exception is raised. For bzrlib
users needing to follow http redirections anyway,
bzrlib.transport.do_catching_redirections provide an easy transition
path.
* Added ``ReadLock.temporary_write_lock()`` to allow upgrading an OS read
lock to an OS write lock. Linux can do this without unlocking, Win32
needs to unlock in between.
* New parameter ``recommend_upgrade`` to BzrDir.open_workingtree
to silence (when false) warnings about opening old formats.
* Fix minor performance regression with bzr-0.15 on pre-dirstate
trees. (We were reading the working inventory too many times).
* Take smtp_server from user config into account.
* Restore Unicode filename handling for versioned and unversioned files.
* Don't fail during ``bzr commit`` if a file is marked removed, and
the containing directory is auto-removed.
* ``bzr status FILENAME`` failed on Windows because of an uncommon
errno. (``ERROR_DIRECTORY == 267 != ENOTDIR``).
* ``bzr checkout source`` should create a local branch in the same
format as source.
* ``bzr commit`` with a kind change was failing to update the
last-changed-revision for directories. The
InventoryDirectory._unchanged only looked at the parent_id and name,
ignoring the fact that the kind could have changed, too.
* ``bzr mv dir/subdir other`` was incorrectly updating files inside
the directory. So that there was a chance it would break commit,
etc.
* Correctly handles mutiple permanent http redirections.
* New ``merge-directive`` command to generate machine- and human-readable
merge requests.
* New ``submit:`` revision specifier makes it easy to diff against the
common ancestor with the submit location
* Added support for Putty's SSH implementation.
* Added ``bzr status --versioned`` to report only versioned files,
not unknowns.
* Merge now autodetects the correct line-ending style for its conflict
markers.
* Refactored SSH vendor registration into SSHVendorManager class.
* New ``--numbered-dirs`` option to ``bzr selftest`` to use
numbered dirs for TestCaseInTempDir. This is default behavior
on Windows. Anyone can force named dirs on Windows
with ``--no-numbered-dirs``.
* Fix ``RevisionSpec_revid`` to handle the Unicode strings passed in
from the command line.
* Fix ``TreeTransform._iter_changes`` when both the source and
destination are missing.
* Fix commit of merges with symlinks in dirstate trees.
* Switch the ``bzr init-repo`` default from --no-trees to --trees.
* The default disk format has changed. Please run 'bzr upgrade' in your
working trees to upgrade. This new default is compatible for network
operations, but not for local operations. That is, if you have two
versions of bzr installed locally, after upgrading you can only use the
bzr 0.15 version. This new default does not enable tags or nested-trees
as they are incompatible with bzr versions before 0.15 over the network.
* For users of bzrlib: Two major changes have been made to the working tree
api in bzrlib. The first is that many methods and attributes, including
the inventory attribute, are no longer valid for use until one of
lock_read/lock_write/lock_tree_write has been called, and become invalid
again after unlock is called. This has been done to improve performance
and correctness as part of the dirstate development.
* For users of bzrlib: The attribute 'tree.inventory' should be considered
readonly. Previously it was possible to directly alter this attribute, or
its contents, and have the tree notice this. This has been made
unsupported - it may work in some tree formats, but in the newer dirstate
format such actions will have no effect and will be ignored, or even
cause assertions. All operations possible can still be carried out by a
combination of the tree API, and the bzrlib.transform API.
* Support for OS Windows 98. Also .bzr.log on any windows system
saved in My Documents folder.
* ``bzr mv`` enhanced to support already moved files.
In the past the mv command would have failed if the source file doesn't
exist. In this situation ``bzr mv`` would now detect that the file has
already moved and update the repository accordingly, if the target file
does exist.
* A new option ``--after`` has been added so that if two files already
exist, you could notify Bazaar that you have moved a (versioned) file
and replaced it with another. Thus in this case ``bzr move --after``
will only update the Bazaar identifier.
* ``ls`` now works on treeless branches and remote branches.
* ``bzr help global-options`` describes the global options.
* ``bzr pull --overwrite`` will now correctly overwrite checkouts.
* Files are now allowed to change kind (e.g. from file to symlink).
Supported by ``commit``, ``revert`` and ``status``
* ``inventory`` and ``unknowns`` hidden in favour of ``ls``
* ``bzr help checkouts`` descibes what checkouts are and some possible
uses of them.
* A new ``-d`` option to push, pull and merge overrides the default
directory.
* Branch format 6: smaller, and potentially faster than format 5. Supports
"append_history_only" mode, where the log view and revnos do not change,
except by being added to. Stores policy settings in
".bzr/branch/branch.conf".
* append_only branches: Format 6 branches may be configured so that log
view and revnos are always consistent. Either create the branch using
"bzr init --append-revisions-only" or edit the config file as descriped
in docs/configuration.txt.
* rebind: Format 6 branches retain the last-used bind location, so if you
"bzr unbind", you can "bzr bind" to bind to the previously-selected
bind location.
* Builtin tags support, created and deleted by the ``tag`` command and
stored in the branch. Tags can be accessed with the revisionspec
``-rtag:``, and listed with ``bzr tags``. Tags are not versioned
at present. Tags require a network incompatible upgrade. To perform this
upgrade, run ``bzr upgrade --dirstate-tags`` in your branch and
repositories.
* The bzr:// transport now has a well-known port number, 4155, which it will
use by default.
* Bazaar now looks for user-installed plugins before looking for site-wide
plugins.
* ``bzr resolve`` now detects and marks resolved text conflicts.
* Internally revision ids and file ids are now passed around as utf-8
bytestrings, rather than treating them as Unicode strings. This has
performance benefits for Knits, since we no longer need to decode the
revision id for each line of content, nor for each entry in the index.
This will also help with the future dirstate format.
* Reserved ids (any revision-id ending in a colon) are rejected by
versionedfiles, repositories, branches, and working trees
* Minor performance improvement by not creating a ProgressBar for
every KnitIndex we create. (about 90ms for a bzr.dev tree)
* New easier to use Branch hooks facility. There are five initial hooks,
all documented in bzrlib.branch.BranchHooks.__init__ - 'set_rh',
'post_push', 'post_pull', 'post_commit', 'post_uncommit'. These hooks
fire after the matching operation on a branch has taken place, and were
originally added for the branchrss plugin.
* New method ``Branch.push()`` which should be used when pushing from a
branch as it makes performance and policy decisions to match the UI
level command ``push``.
* Add a new method ``Tree.revision_tree`` which allows access to cached
trees for arbitrary revisions. This allows the in development dirstate
tree format to provide access to the callers to cached copies of
inventory data which are cheaper to access than inventories from the
repository.
* New Branch.last_revision_info method, this is being done to allow
optimization of requests for both the number of revisions and the last
revision of a branch with smartservers and potentially future branch
formats.
* Allow 'import bzrlib.plugins.NAME' to work when the plugin NAME has not
yet been loaded by load_plugins(). This allows plugins to depend on each
other for code reuse without requiring users to perform file-renaming
gymnastics.
* New Repository method 'gather_stats' for statistic data collection.
This is expected to grow to cover a number of related uses mainly
related to bzr info.
* Log formatters are now managed with a registry.
``log.register_formatter`` continues to work, but callers accessing
the FORMATTERS dictionary directly will not.
* Allow a start message to be passed to the ``edit_commit_message``
function. This will be placed in the message offered to the user
for editing above the separator. It allows a template commit message
to be used more easily.
* ``GPGStrategy.sign()`` will now raise ``BzrBadParameterUnicode`` if
you pass a Unicode string rather than an 8-bit string. Callers need
to be updated to encode first.
* Branch.push, pull, merge now return Result objects with information
about what happened, rather than a scattering of various methods. These
are also passed to the post hooks.
* File formats and architecture is in place for managing a forest of trees
in bzr, and splitting up existing trees into smaller subtrees, and
finally joining trees to make a larger tree. This is the first iteration
of this support, and the user-facing aspects still require substantial
work. If you wish to experiment with it, use ``bzr upgrade
--dirstate-with-subtree`` in your working trees and repositories.
You can use the hidden commands ``split`` and ``join`` and to create
and manipulate nested trees, but please consider using the nested-trees
branch, which contains substantial UI improvements, instead.
http://code.aaronbentley.com/bzr/bzrrepo/nested-trees/
* ``bzr annotate`` now uses dotted revnos from the viewpoint of the
branch, rather than the last changed revision of the file.
* Lock operations no longer hang if they encounter a permission problem.
* ``bzr push`` can resume a push that was canceled before it finished.
Also, it can push even if the target directory exists if you supply
the ``--use-existing-dir`` flag.
* Fix http proxy authentication when user and an optional
password appears in the ``*_proxy`` vars.
* ``bzr log branch/file`` works for local treeless branches
* Fix problem with UNC paths on Windows 98.
* Searching location of CA bundle for PyCurl in env variable
(CURL_CA_BUNDLE), and on win32 along the PATH.
* ``bzr init`` works with unicode argument LOCATION.
* Raise DependencyNotPresent if pycurl do not support https.
* Invalid proxy env variables should not cause a traceback.
* Ignore patterns normalised to use '/' path separator.
* bzr rocks. It sure does! Fix case.
* Fix bzrtools shelve command for removed lines beginning with "--"
* New ``--first`` option to ``bzr selftest`` to run specified tests
before the rest of the suite.
* ``bzr help global-options`` describes the global options.
* Skip documentation generation tests if the tools to do so are not
available. Fixes running selftest for installled copies of bzr.
* Fix the code that discovers whether bzr is being run from it's
working tree to handle the case when it isn't but the directory
it is in is below a repository.
* New connection: ``bzr+http://`` which supports tunnelling the smart
protocol over an HTTP connection. If writing is enabled on the bzr
server, then you can write over the http connection.
* Aliases now support quotation marks, so they can contain whitespace
* PyCurlTransport now use a single curl object. By specifying explicitly
the 'Range' header, we avoid the need to use two different curl objects
(and two connections to the same server).
* ``bzr commit`` does not prompt for a message until it is very likely to
succeed.
* ``bzr conflicts`` now takes --text to list pathnames of text conflicts
* Fix ``iter_lines_added_or_present_in_versions`` to use a set instead
of a list while checking if a revision id was requested. Takes 10s
off of the ``fileids_affected_by_revision_ids`` time, which is 10s
of the ``bzr branch`` time. Also improve ``fileids_...`` time by
filtering lines with a regex rather than multiple ``str.find()``
calls. (saves another 300ms)
* Policy can be set for each configuration key. This allows keys to be
inherited properly across configuration entries. For example, this
should enable you to do::
[/home/user/project]
push_location = sftp://host/srv/project/
push_location:policy = appendpath
And then a branch like ``/home/user/project/mybranch`` should get an
automatic push location of ``sftp://host/srv/project/mybranch``.
* Added ``bzr status --short`` to make status report svn style flags
for each file. For example::
$ bzr status --short
A foo
A bar
D baz
? wooley
* 'bzr selftest --clean-output' allows easily clean temporary tests
directories without running tests.
* ``bzr help hidden-commands`` lists all hidden commands.
* ``bzr merge`` now has an option ``--pull`` to fall back to pull if
local is fully merged into remote.
* ``bzr help formats`` describes available directory formats.
* A few tweaks directly to ``fileids_affected_by_revision_ids`` to
help speed up processing, as well allowing to extract unannotated
lines. Between the two ``fileids_affected_by_revision_ids`` is
improved by approx 10%.
* Change Revision serialization to only write out millisecond
resolution. Rather than expecting floating point serialization to
preserve more resolution than we need.
* Test suite ends cleanly on Windows.
* When 'encoding_type' attribute of class Command is equal to 'exact',
force sys.stdout to be a binary stream on Windows, and therefore
keep exact line-endings (without LF -> CRLF conversion).
* Single-letter short options are no longer globally declared.
* Before using detected user/terminal encoding bzr should check
that Python has corresponding codec.
* Formats for end-user selection are provided via a FormatRegistry
* ``bzr missing --verbose`` was showing adds/removals in the wrong
direction.
* ``bzr annotate`` now defaults to showing dotted revnos for merged
revisions. It cuts them off at a depth of 12 characters, but you can
supply ``--long`` to see the full number. You can also use
``--show-ids`` to display the original revision ids, rather than
revision numbers and committer names.
* bzr now supports Win32 UNC path (e.g. \\HOST\path).
* Win32-specific: output of cat, bundle and diff commands don't mangle
line-endings
* Replace broken fnmatch based ignore pattern matching with custom pattern
matcher.
* pycurl and urllib can detect short reads at different places. Update
the test suite to test more cases. Also detect http error code 416
which was raised for that specific bug. Also enhance the urllib
robustness by detecting invalid ranges (and pycurl's one by detecting
short reads during the initial GET).
* The urllib connection sharing interacts badly with urllib2
proxy setting (the connections didn't go thru the proxy
anymore). Defining a proper ProxyHandler solves the
problem.
* Use urlutils to generate relative URLs, not osutils
* ``bzr status`` in a readonly directory should work without giving
lots of errors.
* Mention the revisionspec topic for the revision option help.
* Allow plugins import from zip archives.
* Wed Jan 24 2007 - aj@suse.de
- Remove obsolete require on python-elementtree.
* Wed Jan 10 2007 - cthiel@suse.de
- require python-xml
* Tue Jan 09 2007 - cthiel@suse.de
- Upgrade to Version 0.13:
o IMPROVEMENTS:
* New command ``bzr remove-tree`` allows the removal of the working
tree from a branch.
* urllib uses shared keep-alive connections, so http
operations are substantially faster.
* ``bzr export`` allows an optional branch parameter, to export a bzr
tree from some other url. For example:
``bzr export bzr.tar.gz http://bazaar-vcs.org/bzr/bzr.dev``
* Added ``bzr help topics`` to the bzr help system. This gives a
location for general information, outside of a specific command.
This includes updates for ``bzr help revisionspec`` the first topic
included.
* WSGI-compatible HTTP smart server. See ``doc/http_smart_server.txt``.
* Knit files will now cache full texts only when the size of the
deltas is as large as the size of the fulltext. (Or after 200
deltas, whichever comes first). This has the most benefit on large
files with small changes, such as the inventory for a large project.
(eg For a project with 2500 files, and 7500 revisions, it changes
the size of inventory.knit from 11MB to 5.4MB)
o INTERNALS:
* New -D option given before the command line turns on debugging output
for particular areas. -Derror shows tracebacks on all errors.
* Clean up ``bzr selftest --benchmark bundle`` to correct an import,
and remove benchmarks that take longer than 10min to run.
* Use ``time.time()`` instead of ``time.clock()`` to decide on
progress throttling. Because ``time.clock()`` is actually CPU time,
so over a high-latency connection, too many updates get throttled.
* ``MemoryTransport.list_dir()`` would strip the first character for
files or directories in root directory.
* New ``ChrootTransportDecorator``, accessible via the ``chroot+`` url
prefix. It disallows any access to locations above a set URL.
* Mon Oct 23 2006 - kssingvo@suse.de
- Upgrade to Version 0.11:
* Smart server transport test failures on windows fixed.
* Test suite hangs on windows fixed.
* Commit performance regression fixed.
* Knit files now wait to create their contents until the first
data is added.
* When an entire subtree has been deleted, commit will now report
that just the top of the subtree has been deleted, rather than
reporting all the individual items.
* Commit performs one less XML parse.
* ``bzr checkout`` now operates on readonly branches as well as
readwrite branches.
* ``bzr bind`` no longer synchronises history with the master
branch.
* ``bzrlib.lazy_import.lazy_import`` function to create on-demand
objects.
* Support bzr:// and bzr+ssh:// urls to work with the new
RPC-based transport which will be used with the upcoming
high-performance smart server.
* New command ``bzr version-info`` which can be used to get a
summary of the current state of the tree.
* 'bzr inventory [FILE...]' allows restricting the file list to a
specific set of files.
* Don't abort when annotating empty files
* Add ``Stanza.to_unicode()`` which can be passed to another
Stanza when nesting stanzas.
* Transform._set_mode() needs to stat the right file.
* Raise WeaveFormatError rather than StopIteration when trying to
read an empty Weave file.
* Don't access e.code for generic URLErrors, only HTTPErrors have
.code.
* Handle boundary="" lines properly to allow access through a
Squid proxy.
* revert now removes newly-added directories
* ``bzr upgrade sftp://`` shouldn't fail to upgrade v6 branches
if there isn't a working tree.
* Give nicer error messages when a user supplies an invalid
--revision parameter.
* Handle when LANG is not recognized by python.
* Don't use preexec_fn on win32, as it is not supported by
subprocess.
* Skip specific tests when the dependencies aren't met.
* Fallback to Paramiko properly, if no ``ssh`` executable exists
on the system.
* ``Branch.bind(other_branch)`` no longer takes a write lock on
the other branch, and will not push or pull between the two
branches.
* When creating a tarball or zipfile export, export unicode names
as utf-8 paths.
* When committing, only files that exist in working tree or basis
tree may be specified
* Fixes to run on Python 2.5
* TestCaseInTempDir now creates a separate directory for HOME,
rather than having HOME set to the same location as the working
directory.
* run_bzr_subprocess() can take an optional 'env_changes={}'
parameter, which will update os.environ inside the spawned
child.
* Refactor SFTP vendors to allow easier re-use when ssh is used.
* Transport.list_dir() and Transport.iter_files_recursive()
should always return urlescaped paths.
* New utility function symbol_versioning.deprecation_string.
* New TestCase helper applyDeprecated.
* Transport.append and Transport.put have been deprecated in
favor of .append_bytes, .append_file, .put_bytes, and
.put_file.
* WorkingTree has a new api ``unversion`` which allow the
unversioning of entries by their file id.
* WorkingTree.pending_merges is deprecated.
* WorkingTree has a new lock_tree_write method which locks the
branch for read rather than write.
* All WorkingTree methods which write to the tree, but not to the
branch have been converted to use ``needs_tree_write_lock``
rather than ``needs_write_lock``.
* Special case importing the standard library 'copy' module.
* WorkingTree has a new parent class MutableTree which represents
the specialisations of Tree which are able to be altered.
* New methods mkdir and put_file_bytes_non_atomic on MutableTree
that mutate the tree and its contents.
* Transport behaviour at the root of the URL is now defined and
tested.
* 'merge' now takes --uncommitted, to apply uncommitted changes
from a tree.
* 'bzr add --file-ids-from' can be used to specify another path
to use for creating file ids, rather than generating all new
ones.
* ``bzr selftest --benchmark`` now allows a ``--cache-dir``
parameter.
* Inverse forms are provided for all boolean options.
* Serialize out Inventories directly, rather than using
ElementTree.
* Help diffutils 2.8.4 get along with binary tests
* Change LockDir so that if the lock directory doesn't exist when
lock_write() is called, an attempt will be made to create it.
* ``bzr uncommit`` preserves pending merges.
* Active FTP transport now works as intended.
* Really fix mutter() so that it won't ever raise a UnicodeError.
* Change Command handle to allow Unicode command and options.
* Handle TZ=UTC properly when reading/writing revisions.
* Use GPG_TTY to allow gpg --cl to work with gpg-agent in a
pipeline.
* External diff does the right thing for binaries even in foreign
languages.
* Testament handles more cases when content is unicode.
* The bzr selftest was failing on installed versions due to a bug
in a new test helper.
* ``bzrlib.cache_utf8`` contains ``encode()`` and ``decode()``
functions which can be used to cache the conversion between
utf8 and Unicode.
* ``setup.py`` now searches the filesystem to find all packages
which need to be installed.
* Sat Sep 23 2006 - aj@suse.de
- Fix build with python 2.5.
* Thu Aug 17 2006 - kssingvo@suse.de
- fixed typo in Requires:
- removed rm BUILD_ROOT in %install
- removed version from python directory in %files
* Thu Aug 17 2006 - kssingvo@suse.de
- initial version: 0.9
/usr/bin/bzr /usr/lib/python2.5/site-packages/bzr-0.18.0-py2.5.egg-info /usr/lib/python2.5/site-packages/bzrlib /usr/lib/python2.5/site-packages/bzrlib/__init__.py /usr/lib/python2.5/site-packages/bzrlib/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/add.py /usr/lib/python2.5/site-packages/bzrlib/add.pyc /usr/lib/python2.5/site-packages/bzrlib/annotate.py /usr/lib/python2.5/site-packages/bzrlib/annotate.pyc /usr/lib/python2.5/site-packages/bzrlib/api.py /usr/lib/python2.5/site-packages/bzrlib/api.pyc /usr/lib/python2.5/site-packages/bzrlib/atomicfile.py /usr/lib/python2.5/site-packages/bzrlib/atomicfile.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks /usr/lib/python2.5/site-packages/bzrlib/benchmarks/__init__.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_add.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_add.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_bench.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_bench.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_bundle.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_bundle.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_cache_utf8.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_cache_utf8.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_checkout.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_checkout.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_commit.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_commit.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_info.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_info.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_inventory.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_inventory.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_log.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_log.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_osutils.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_osutils.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_rocks.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_rocks.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_sftp.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_sftp.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_startup.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_startup.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_status.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_status.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_transform.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_transform.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_workingtree.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_workingtree.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_xml.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/bench_xml.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/__init__.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/heavily_merged.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/heavily_merged.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/kernel_like.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/kernel_like.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/many_commit.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/many_commit.pyc /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/simple_many_commit.py /usr/lib/python2.5/site-packages/bzrlib/benchmarks/tree_creator/simple_many_commit.pyc /usr/lib/python2.5/site-packages/bzrlib/branch.py /usr/lib/python2.5/site-packages/bzrlib/branch.pyc /usr/lib/python2.5/site-packages/bzrlib/branchbuilder.py /usr/lib/python2.5/site-packages/bzrlib/branchbuilder.pyc /usr/lib/python2.5/site-packages/bzrlib/breakin.py /usr/lib/python2.5/site-packages/bzrlib/breakin.pyc /usr/lib/python2.5/site-packages/bzrlib/bugtracker.py /usr/lib/python2.5/site-packages/bzrlib/bugtracker.pyc /usr/lib/python2.5/site-packages/bzrlib/builtins.py /usr/lib/python2.5/site-packages/bzrlib/builtins.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle /usr/lib/python2.5/site-packages/bzrlib/bundle/__init__.py /usr/lib/python2.5/site-packages/bzrlib/bundle/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle/apply_bundle.py /usr/lib/python2.5/site-packages/bzrlib/bundle/apply_bundle.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle/bundle_data.py /usr/lib/python2.5/site-packages/bzrlib/bundle/bundle_data.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle/commands.py /usr/lib/python2.5/site-packages/bzrlib/bundle/commands.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle/common.py /usr/lib/python2.5/site-packages/bzrlib/bundle/common.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle/serializer /usr/lib/python2.5/site-packages/bzrlib/bundle/serializer/__init__.py /usr/lib/python2.5/site-packages/bzrlib/bundle/serializer/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle/serializer/v08.py /usr/lib/python2.5/site-packages/bzrlib/bundle/serializer/v08.pyc /usr/lib/python2.5/site-packages/bzrlib/bundle/serializer/v09.py /usr/lib/python2.5/site-packages/bzrlib/bundle/serializer/v09.pyc /usr/lib/python2.5/site-packages/bzrlib/bzrdir.py /usr/lib/python2.5/site-packages/bzrlib/bzrdir.pyc /usr/lib/python2.5/site-packages/bzrlib/cache_utf8.py /usr/lib/python2.5/site-packages/bzrlib/cache_utf8.pyc /usr/lib/python2.5/site-packages/bzrlib/check.py /usr/lib/python2.5/site-packages/bzrlib/check.pyc /usr/lib/python2.5/site-packages/bzrlib/cmd_version_info.py /usr/lib/python2.5/site-packages/bzrlib/cmd_version_info.pyc /usr/lib/python2.5/site-packages/bzrlib/commands.py /usr/lib/python2.5/site-packages/bzrlib/commands.pyc /usr/lib/python2.5/site-packages/bzrlib/commit.py /usr/lib/python2.5/site-packages/bzrlib/commit.pyc /usr/lib/python2.5/site-packages/bzrlib/config.py /usr/lib/python2.5/site-packages/bzrlib/config.pyc /usr/lib/python2.5/site-packages/bzrlib/conflicts.py /usr/lib/python2.5/site-packages/bzrlib/conflicts.pyc /usr/lib/python2.5/site-packages/bzrlib/counted_lock.py /usr/lib/python2.5/site-packages/bzrlib/counted_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/debug.py /usr/lib/python2.5/site-packages/bzrlib/debug.pyc /usr/lib/python2.5/site-packages/bzrlib/decorators.py /usr/lib/python2.5/site-packages/bzrlib/decorators.pyc /usr/lib/python2.5/site-packages/bzrlib/delta.py /usr/lib/python2.5/site-packages/bzrlib/delta.pyc /usr/lib/python2.5/site-packages/bzrlib/deprecated_graph.py /usr/lib/python2.5/site-packages/bzrlib/deprecated_graph.pyc /usr/lib/python2.5/site-packages/bzrlib/diff.py /usr/lib/python2.5/site-packages/bzrlib/diff.pyc /usr/lib/python2.5/site-packages/bzrlib/dirstate.py /usr/lib/python2.5/site-packages/bzrlib/dirstate.pyc /usr/lib/python2.5/site-packages/bzrlib/doc /usr/lib/python2.5/site-packages/bzrlib/doc/__init__.py /usr/lib/python2.5/site-packages/bzrlib/doc/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/doc/api /usr/lib/python2.5/site-packages/bzrlib/doc/api/__init__.py /usr/lib/python2.5/site-packages/bzrlib/doc/api/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/doc/api/branch.txt /usr/lib/python2.5/site-packages/bzrlib/doc/api/transport.txt /usr/lib/python2.5/site-packages/bzrlib/errors.py /usr/lib/python2.5/site-packages/bzrlib/errors.pyc /usr/lib/python2.5/site-packages/bzrlib/export /usr/lib/python2.5/site-packages/bzrlib/export/__init__.py /usr/lib/python2.5/site-packages/bzrlib/export/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/export/dir_exporter.py /usr/lib/python2.5/site-packages/bzrlib/export/dir_exporter.pyc /usr/lib/python2.5/site-packages/bzrlib/export/tar_exporter.py /usr/lib/python2.5/site-packages/bzrlib/export/tar_exporter.pyc /usr/lib/python2.5/site-packages/bzrlib/export/zip_exporter.py /usr/lib/python2.5/site-packages/bzrlib/export/zip_exporter.pyc /usr/lib/python2.5/site-packages/bzrlib/externalcommand.py /usr/lib/python2.5/site-packages/bzrlib/externalcommand.pyc /usr/lib/python2.5/site-packages/bzrlib/fetch.py /usr/lib/python2.5/site-packages/bzrlib/fetch.pyc /usr/lib/python2.5/site-packages/bzrlib/generate_ids.py /usr/lib/python2.5/site-packages/bzrlib/generate_ids.pyc /usr/lib/python2.5/site-packages/bzrlib/globbing.py /usr/lib/python2.5/site-packages/bzrlib/globbing.pyc /usr/lib/python2.5/site-packages/bzrlib/gpg.py /usr/lib/python2.5/site-packages/bzrlib/gpg.pyc /usr/lib/python2.5/site-packages/bzrlib/graph.py /usr/lib/python2.5/site-packages/bzrlib/graph.pyc /usr/lib/python2.5/site-packages/bzrlib/hashcache.py /usr/lib/python2.5/site-packages/bzrlib/hashcache.pyc /usr/lib/python2.5/site-packages/bzrlib/help.py /usr/lib/python2.5/site-packages/bzrlib/help.pyc /usr/lib/python2.5/site-packages/bzrlib/help_topics.py /usr/lib/python2.5/site-packages/bzrlib/help_topics.pyc /usr/lib/python2.5/site-packages/bzrlib/hooks.py /usr/lib/python2.5/site-packages/bzrlib/hooks.pyc /usr/lib/python2.5/site-packages/bzrlib/identitymap.py /usr/lib/python2.5/site-packages/bzrlib/identitymap.pyc /usr/lib/python2.5/site-packages/bzrlib/ignores.py /usr/lib/python2.5/site-packages/bzrlib/ignores.pyc /usr/lib/python2.5/site-packages/bzrlib/info.py /usr/lib/python2.5/site-packages/bzrlib/info.pyc /usr/lib/python2.5/site-packages/bzrlib/inspect_for_copy.py /usr/lib/python2.5/site-packages/bzrlib/inspect_for_copy.pyc /usr/lib/python2.5/site-packages/bzrlib/inter.py /usr/lib/python2.5/site-packages/bzrlib/inter.pyc /usr/lib/python2.5/site-packages/bzrlib/intset.py /usr/lib/python2.5/site-packages/bzrlib/intset.pyc /usr/lib/python2.5/site-packages/bzrlib/inventory.py /usr/lib/python2.5/site-packages/bzrlib/inventory.pyc /usr/lib/python2.5/site-packages/bzrlib/iterablefile.py /usr/lib/python2.5/site-packages/bzrlib/iterablefile.pyc /usr/lib/python2.5/site-packages/bzrlib/knit.py /usr/lib/python2.5/site-packages/bzrlib/knit.pyc /usr/lib/python2.5/site-packages/bzrlib/lazy_import.py /usr/lib/python2.5/site-packages/bzrlib/lazy_import.pyc /usr/lib/python2.5/site-packages/bzrlib/lazy_regex.py /usr/lib/python2.5/site-packages/bzrlib/lazy_regex.pyc /usr/lib/python2.5/site-packages/bzrlib/lock.py /usr/lib/python2.5/site-packages/bzrlib/lock.pyc /usr/lib/python2.5/site-packages/bzrlib/lockable_files.py /usr/lib/python2.5/site-packages/bzrlib/lockable_files.pyc /usr/lib/python2.5/site-packages/bzrlib/lockdir.py /usr/lib/python2.5/site-packages/bzrlib/lockdir.pyc /usr/lib/python2.5/site-packages/bzrlib/log.py /usr/lib/python2.5/site-packages/bzrlib/log.pyc /usr/lib/python2.5/site-packages/bzrlib/lsprof.py /usr/lib/python2.5/site-packages/bzrlib/lsprof.pyc /usr/lib/python2.5/site-packages/bzrlib/memorytree.py /usr/lib/python2.5/site-packages/bzrlib/memorytree.pyc /usr/lib/python2.5/site-packages/bzrlib/merge.py /usr/lib/python2.5/site-packages/bzrlib/merge.pyc /usr/lib/python2.5/site-packages/bzrlib/merge3.py /usr/lib/python2.5/site-packages/bzrlib/merge3.pyc /usr/lib/python2.5/site-packages/bzrlib/merge_directive.py /usr/lib/python2.5/site-packages/bzrlib/merge_directive.pyc /usr/lib/python2.5/site-packages/bzrlib/missing.py /usr/lib/python2.5/site-packages/bzrlib/missing.pyc /usr/lib/python2.5/site-packages/bzrlib/msgeditor.py /usr/lib/python2.5/site-packages/bzrlib/msgeditor.pyc /usr/lib/python2.5/site-packages/bzrlib/mutabletree.py /usr/lib/python2.5/site-packages/bzrlib/mutabletree.pyc /usr/lib/python2.5/site-packages/bzrlib/option.py /usr/lib/python2.5/site-packages/bzrlib/option.pyc /usr/lib/python2.5/site-packages/bzrlib/osutils.py /usr/lib/python2.5/site-packages/bzrlib/osutils.pyc /usr/lib/python2.5/site-packages/bzrlib/pack.py /usr/lib/python2.5/site-packages/bzrlib/pack.pyc /usr/lib/python2.5/site-packages/bzrlib/patch.py /usr/lib/python2.5/site-packages/bzrlib/patch.pyc /usr/lib/python2.5/site-packages/bzrlib/patches.py /usr/lib/python2.5/site-packages/bzrlib/patches.pyc /usr/lib/python2.5/site-packages/bzrlib/patiencediff.py /usr/lib/python2.5/site-packages/bzrlib/patiencediff.pyc /usr/lib/python2.5/site-packages/bzrlib/plugin.py /usr/lib/python2.5/site-packages/bzrlib/plugin.pyc /usr/lib/python2.5/site-packages/bzrlib/plugins /usr/lib/python2.5/site-packages/bzrlib/plugins/__init__.py /usr/lib/python2.5/site-packages/bzrlib/plugins/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/__init__.py /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/lp_indirect.py /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/lp_indirect.pyc /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/lp_registration.py /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/lp_registration.pyc /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/test_lp_indirect.py /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/test_lp_indirect.pyc /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/test_register.py /usr/lib/python2.5/site-packages/bzrlib/plugins/launchpad/test_register.pyc /usr/lib/python2.5/site-packages/bzrlib/progress.py /usr/lib/python2.5/site-packages/bzrlib/progress.pyc /usr/lib/python2.5/site-packages/bzrlib/reconcile.py /usr/lib/python2.5/site-packages/bzrlib/reconcile.pyc /usr/lib/python2.5/site-packages/bzrlib/registry.py /usr/lib/python2.5/site-packages/bzrlib/registry.pyc /usr/lib/python2.5/site-packages/bzrlib/remote.py /usr/lib/python2.5/site-packages/bzrlib/remote.pyc /usr/lib/python2.5/site-packages/bzrlib/repofmt /usr/lib/python2.5/site-packages/bzrlib/repofmt/__init__.py /usr/lib/python2.5/site-packages/bzrlib/repofmt/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/repofmt/knitrepo.py /usr/lib/python2.5/site-packages/bzrlib/repofmt/knitrepo.pyc /usr/lib/python2.5/site-packages/bzrlib/repofmt/weaverepo.py /usr/lib/python2.5/site-packages/bzrlib/repofmt/weaverepo.pyc /usr/lib/python2.5/site-packages/bzrlib/repository.py /usr/lib/python2.5/site-packages/bzrlib/repository.pyc /usr/lib/python2.5/site-packages/bzrlib/revision.py /usr/lib/python2.5/site-packages/bzrlib/revision.pyc /usr/lib/python2.5/site-packages/bzrlib/revisionspec.py /usr/lib/python2.5/site-packages/bzrlib/revisionspec.pyc /usr/lib/python2.5/site-packages/bzrlib/revisiontree.py /usr/lib/python2.5/site-packages/bzrlib/revisiontree.pyc /usr/lib/python2.5/site-packages/bzrlib/rio.py /usr/lib/python2.5/site-packages/bzrlib/rio.pyc /usr/lib/python2.5/site-packages/bzrlib/shellcomplete.py /usr/lib/python2.5/site-packages/bzrlib/shellcomplete.pyc /usr/lib/python2.5/site-packages/bzrlib/sign_my_commits.py /usr/lib/python2.5/site-packages/bzrlib/sign_my_commits.pyc /usr/lib/python2.5/site-packages/bzrlib/smart /usr/lib/python2.5/site-packages/bzrlib/smart/__init__.py /usr/lib/python2.5/site-packages/bzrlib/smart/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/branch.py /usr/lib/python2.5/site-packages/bzrlib/smart/branch.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/bzrdir.py /usr/lib/python2.5/site-packages/bzrlib/smart/bzrdir.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/client.py /usr/lib/python2.5/site-packages/bzrlib/smart/client.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/medium.py /usr/lib/python2.5/site-packages/bzrlib/smart/medium.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/protocol.py /usr/lib/python2.5/site-packages/bzrlib/smart/protocol.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/repository.py /usr/lib/python2.5/site-packages/bzrlib/smart/repository.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/request.py /usr/lib/python2.5/site-packages/bzrlib/smart/request.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/server.py /usr/lib/python2.5/site-packages/bzrlib/smart/server.pyc /usr/lib/python2.5/site-packages/bzrlib/smart/vfs.py /usr/lib/python2.5/site-packages/bzrlib/smart/vfs.pyc /usr/lib/python2.5/site-packages/bzrlib/smtp_connection.py /usr/lib/python2.5/site-packages/bzrlib/smtp_connection.pyc /usr/lib/python2.5/site-packages/bzrlib/status.py /usr/lib/python2.5/site-packages/bzrlib/status.pyc /usr/lib/python2.5/site-packages/bzrlib/store /usr/lib/python2.5/site-packages/bzrlib/store/__init__.py /usr/lib/python2.5/site-packages/bzrlib/store/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/store/revision /usr/lib/python2.5/site-packages/bzrlib/store/revision/__init__.py /usr/lib/python2.5/site-packages/bzrlib/store/revision/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/store/revision/knit.py /usr/lib/python2.5/site-packages/bzrlib/store/revision/knit.pyc /usr/lib/python2.5/site-packages/bzrlib/store/revision/text.py /usr/lib/python2.5/site-packages/bzrlib/store/revision/text.pyc /usr/lib/python2.5/site-packages/bzrlib/store/text.py /usr/lib/python2.5/site-packages/bzrlib/store/text.pyc /usr/lib/python2.5/site-packages/bzrlib/store/versioned /usr/lib/python2.5/site-packages/bzrlib/store/versioned/__init__.py /usr/lib/python2.5/site-packages/bzrlib/store/versioned/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/strace.py /usr/lib/python2.5/site-packages/bzrlib/strace.pyc /usr/lib/python2.5/site-packages/bzrlib/symbol_versioning.py /usr/lib/python2.5/site-packages/bzrlib/symbol_versioning.pyc /usr/lib/python2.5/site-packages/bzrlib/tag.py /usr/lib/python2.5/site-packages/bzrlib/tag.pyc /usr/lib/python2.5/site-packages/bzrlib/testament.py /usr/lib/python2.5/site-packages/bzrlib/testament.pyc /usr/lib/python2.5/site-packages/bzrlib/tests /usr/lib/python2.5/site-packages/bzrlib/tests/EncodingAdapter.py /usr/lib/python2.5/site-packages/bzrlib/tests/EncodingAdapter.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/HTTPTestUtil.py /usr/lib/python2.5/site-packages/bzrlib/tests/HTTPTestUtil.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/HttpServer.py /usr/lib/python2.5/site-packages/bzrlib/tests/HttpServer.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/TestUtil.py /usr/lib/python2.5/site-packages/bzrlib/tests/TestUtil.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_add.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_add.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_added.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_added.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_aliases.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_aliases.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ancestry.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ancestry.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_annotate.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_annotate.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_bound_branches.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_bound_branches.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_branch.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_branch.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_break_lock.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_break_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_breakin.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_breakin.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_bundle.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_bundle.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_cat.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_cat.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_cat_revision.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_cat_revision.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_checkout.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_checkout.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_command_encoding.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_command_encoding.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_commit.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_commit.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_conflicts.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_conflicts.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_debug.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_debug.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_diff.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_diff.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_exceptions.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_exceptions.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_export.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_export.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_find_merge_base.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_find_merge_base.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_help.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_help.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ignore.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ignore.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ignored.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ignored.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_info.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_info.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_init.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_init.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_inventory.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_inventory.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_join.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_join.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_locale.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_locale.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_log.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_log.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_logformats.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_logformats.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ls.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_ls.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_lsprof.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_lsprof.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_merge.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_merge.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_merge_directive.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_merge_directive.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_missing.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_missing.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_mv.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_mv.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_nick.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_nick.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_non_ascii.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_non_ascii.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_outside_wt.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_outside_wt.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_pull.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_pull.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_push.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_push.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_re_sign.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_re_sign.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_reconcile.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_reconcile.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_remerge.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_remerge.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_remove.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_remove.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_remove_tree.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_remove_tree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revert.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revert.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revision_history.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revision_history.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revision_info.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revision_info.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revno.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_revno.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_selftest.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_selftest.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_serve.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_serve.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_shared_repository.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_shared_repository.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_sign_my_commits.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_sign_my_commits.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_split.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_split.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_status.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_status.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_tags.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_tags.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_testament.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_testament.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_too_much.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_too_much.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_uncommit.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_uncommit.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_update.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_update.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_upgrade.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_upgrade.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_version.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_version.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_version_info.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_version_info.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_versioning.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_versioning.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_whoami.py /usr/lib/python2.5/site-packages/bzrlib/tests/blackbox/test_whoami.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_bound_sftp.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_bound_sftp.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_branch.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_branch.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_break_lock.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_break_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_commit.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_commit.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_create_checkout.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_create_checkout.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_get_revision_id_to_revno_map.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_get_revision_id_to_revno_map.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_hooks.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_hooks.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_http.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_http.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_last_revision_info.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_last_revision_info.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_locking.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_locking.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_parent.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_parent.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_permissions.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_permissions.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_pull.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_pull.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_push.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_push.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_revision_history.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_revision_history.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_revision_id_to_revno.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_revision_id_to_revno.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_sprout.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_sprout.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_tags.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_tags.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_uncommit.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_uncommit.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_update.py /usr/lib/python2.5/site-packages/bzrlib/tests/branch_implementations/test_update.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/bzrdir_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/bzrdir_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/bzrdir_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/bzrdir_implementations/test_bzrdir.py /usr/lib/python2.5/site-packages/bzrlib/tests/bzrdir_implementations/test_bzrdir.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/interrepository_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/interrepository_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/interrepository_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/interrepository_implementations/test_interrepository.py /usr/lib/python2.5/site-packages/bzrlib/tests/interrepository_implementations/test_interrepository.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/intertree_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/intertree_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/intertree_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/intertree_implementations/test_compare.py /usr/lib/python2.5/site-packages/bzrlib/tests/intertree_implementations/test_compare.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/interversionedfile_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/interversionedfile_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/interversionedfile_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/interversionedfile_implementations/test_join.py /usr/lib/python2.5/site-packages/bzrlib/tests/interversionedfile_implementations/test_join.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/lock_helpers.py /usr/lib/python2.5/site-packages/bzrlib/tests/lock_helpers.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/per_lock /usr/lib/python2.5/site-packages/bzrlib/tests/per_lock/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/per_lock/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/per_lock/test_lock.py /usr/lib/python2.5/site-packages/bzrlib/tests/per_lock/test_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/per_lock/test_temporary_write_lock.py /usr/lib/python2.5/site-packages/bzrlib/tests/per_lock/test_temporary_write_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_break_lock.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_break_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_commit_builder.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_commit_builder.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_fileid_involved.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_fileid_involved.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_iter_reverse_revision_history.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_iter_reverse_revision_history.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_reconcile.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_reconcile.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_repository.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_repository.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_revision.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_revision.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_statistics.py /usr/lib/python2.5/site-packages/bzrlib/tests/repository_implementations/test_statistics.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/revisionstore_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/revisionstore_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/revisionstore_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/revisionstore_implementations/test_all.py /usr/lib/python2.5/site-packages/bzrlib/tests/revisionstore_implementations/test_all.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/stub_sftp.py /usr/lib/python2.5/site-packages/bzrlib/tests/stub_sftp.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_ancestry.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_ancestry.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_annotate.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_annotate.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_api.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_api.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_atomicfile.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_atomicfile.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_bad_files.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_bad_files.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_branch.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_branch.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_branchbuilder.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_branchbuilder.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_bugtracker.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_bugtracker.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_bundle.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_bundle.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_bzrdir.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_bzrdir.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_cache_utf8.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_cache_utf8.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_commands.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_commands.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_commit.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_commit.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_commit_merge.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_commit_merge.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_config.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_config.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_conflicts.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_conflicts.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_counted_lock.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_counted_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_decorators.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_decorators.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_delta.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_delta.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_deprecated_graph.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_deprecated_graph.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_diff.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_diff.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_dirstate.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_dirstate.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_errors.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_errors.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_escaped_store.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_escaped_store.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_extract.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_extract.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_fetch.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_fetch.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_ftp_transport.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_ftp_transport.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_generate_docs.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_generate_docs.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_generate_ids.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_generate_ids.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_globbing.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_globbing.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_gpg.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_gpg.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_graph.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_graph.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_hashcache.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_hashcache.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_help.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_help.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_hooks.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_hooks.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_http.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_http.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_http_response.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_http_response.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_https_ca_bundle.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_https_ca_bundle.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_identitymap.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_identitymap.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_ignores.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_ignores.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_info.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_info.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_inv.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_inv.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_knit.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_knit.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_lazy_import.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_lazy_import.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_lazy_regex.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_lazy_regex.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_lockable_files.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_lockable_files.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_lockdir.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_lockdir.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_log.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_log.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_lsprof.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_lsprof.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_memorytree.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_memorytree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge3.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge3.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge_core.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge_core.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge_directive.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_merge_directive.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_missing.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_missing.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_msgeditor.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_msgeditor.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_nonascii.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_nonascii.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_options.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_options.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_osutils.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_osutils.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_osutils_encodings.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_osutils_encodings.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_pack.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_pack.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_patch.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_patch.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/diff /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/diff-2 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/diff-3 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/diff-4 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/diff-5 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/diff-6 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/insert_top.patch /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/mod /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/mod-2 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/mod-3 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/mod-4 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/mod-5 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/mod-6 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/orig /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/orig-2 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/orig-3 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/orig-4 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/orig-5 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/orig-6 /usr/lib/python2.5/site-packages/bzrlib/tests/test_patches_data/patchtext.patch /usr/lib/python2.5/site-packages/bzrlib/tests/test_permissions.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_permissions.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_plugins.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_plugins.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_progress.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_progress.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_read_bundle.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_read_bundle.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_reconcile.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_reconcile.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_registry.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_registry.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_remote.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_remote.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_repository.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_repository.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_revert.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_revert.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_revision.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_revision.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_revisionnamespaces.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_revisionnamespaces.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_revisiontree.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_revisiontree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_rio.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_rio.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_sampler.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_sampler.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_selftest.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_selftest.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_setup.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_setup.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_sftp_transport.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_sftp_transport.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_smart.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_smart.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_smart_add.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_smart_add.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_smart_transport.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_smart_transport.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_smtp_connection.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_smtp_connection.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_source.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_source.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_ssh_transport.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_ssh_transport.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_status.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_status.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_store.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_store.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_strace.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_strace.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_subsume.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_subsume.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_symbol_versioning.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_symbol_versioning.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_tag.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_tag.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_testament.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_testament.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_textfile.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_textfile.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_textmerge.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_textmerge.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_timestamp.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_timestamp.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_trace.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_trace.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_transactions.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_transactions.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_transform.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_transform.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_transport.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_transport.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_transport_implementations.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_transport_implementations.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_tree.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_tree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_treebuilder.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_treebuilder.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_tsort.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_tsort.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_tuned_gzip.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_tuned_gzip.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_ui.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_ui.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_upgrade.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_upgrade.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_urlutils.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_urlutils.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_version.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_version.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_version_info.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_version_info.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_versionedfile.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_versionedfile.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_weave.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_weave.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_whitebox.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_whitebox.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_workingtree.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_workingtree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_workingtree_4.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_workingtree_4.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_wsgi.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_wsgi.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/test_xml.py /usr/lib/python2.5/site-packages/bzrlib/tests/test_xml.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_get_file_mtime.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_get_file_mtime.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_get_symlink_target.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_get_symlink_target.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_inv.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_inv.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_list_files.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_list_files.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_revision_tree.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_revision_tree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_test_trees.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_test_trees.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_tree.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_tree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_walkdirs.py /usr/lib/python2.5/site-packages/bzrlib/tests/tree_implementations/test_walkdirs.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/treeshape.py /usr/lib/python2.5/site-packages/bzrlib/tests/treeshape.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/__init__.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_add.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_add.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_add_reference.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_add_reference.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_basis_inventory.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_basis_inventory.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_basis_tree.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_basis_tree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_break_lock.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_break_lock.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_changes_from.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_changes_from.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_commit.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_commit.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_executable.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_executable.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_flush.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_flush.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_get_file_mtime.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_get_file_mtime.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_get_parent_ids.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_get_parent_ids.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_inv.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_inv.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_is_control_filename.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_is_control_filename.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_is_ignored.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_is_ignored.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_locking.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_locking.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_merge_from_branch.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_merge_from_branch.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_mkdir.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_mkdir.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_move.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_move.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_nested_specifics.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_nested_specifics.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_parents.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_parents.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_paths2ids.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_paths2ids.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_pull.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_pull.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_put_file.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_put_file.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_read_working_inventory.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_read_working_inventory.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_readonly.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_readonly.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_remove.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_remove.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_rename_one.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_rename_one.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_revision_tree.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_revision_tree.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_set_root_id.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_set_root_id.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_smart_add.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_smart_add.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_unversion.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_unversion.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_walkdirs.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_walkdirs.pyc /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_workingtree.py /usr/lib/python2.5/site-packages/bzrlib/tests/workingtree_implementations/test_workingtree.pyc /usr/lib/python2.5/site-packages/bzrlib/textfile.py /usr/lib/python2.5/site-packages/bzrlib/textfile.pyc /usr/lib/python2.5/site-packages/bzrlib/textinv.py /usr/lib/python2.5/site-packages/bzrlib/textinv.pyc /usr/lib/python2.5/site-packages/bzrlib/textmerge.py /usr/lib/python2.5/site-packages/bzrlib/textmerge.pyc /usr/lib/python2.5/site-packages/bzrlib/textui.py /usr/lib/python2.5/site-packages/bzrlib/textui.pyc /usr/lib/python2.5/site-packages/bzrlib/timestamp.py /usr/lib/python2.5/site-packages/bzrlib/timestamp.pyc /usr/lib/python2.5/site-packages/bzrlib/trace.py /usr/lib/python2.5/site-packages/bzrlib/trace.pyc /usr/lib/python2.5/site-packages/bzrlib/transactions.py /usr/lib/python2.5/site-packages/bzrlib/transactions.pyc /usr/lib/python2.5/site-packages/bzrlib/transform.py /usr/lib/python2.5/site-packages/bzrlib/transform.pyc /usr/lib/python2.5/site-packages/bzrlib/transport /usr/lib/python2.5/site-packages/bzrlib/transport/__init__.py /usr/lib/python2.5/site-packages/bzrlib/transport/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/brokenrename.py /usr/lib/python2.5/site-packages/bzrlib/transport/brokenrename.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/chroot.py /usr/lib/python2.5/site-packages/bzrlib/transport/chroot.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/decorator.py /usr/lib/python2.5/site-packages/bzrlib/transport/decorator.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/fakenfs.py /usr/lib/python2.5/site-packages/bzrlib/transport/fakenfs.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/fakevfat.py /usr/lib/python2.5/site-packages/bzrlib/transport/fakevfat.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/ftp.py /usr/lib/python2.5/site-packages/bzrlib/transport/ftp.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http /usr/lib/python2.5/site-packages/bzrlib/transport/http/__init__.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http/_pycurl.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/_pycurl.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http/_pycurl_errors.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/_pycurl_errors.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http/_urllib.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/_urllib.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http/_urllib2_wrappers.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/_urllib2_wrappers.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http/ca_bundle.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/ca_bundle.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http/response.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/response.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/http/wsgi.py /usr/lib/python2.5/site-packages/bzrlib/transport/http/wsgi.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/local.py /usr/lib/python2.5/site-packages/bzrlib/transport/local.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/memory.py /usr/lib/python2.5/site-packages/bzrlib/transport/memory.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/readonly.py /usr/lib/python2.5/site-packages/bzrlib/transport/readonly.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/remote.py /usr/lib/python2.5/site-packages/bzrlib/transport/remote.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/sftp.py /usr/lib/python2.5/site-packages/bzrlib/transport/sftp.pyc /usr/lib/python2.5/site-packages/bzrlib/transport/ssh.py /usr/lib/python2.5/site-packages/bzrlib/transport/ssh.pyc /usr/lib/python2.5/site-packages/bzrlib/tree.py /usr/lib/python2.5/site-packages/bzrlib/tree.pyc /usr/lib/python2.5/site-packages/bzrlib/treebuilder.py /usr/lib/python2.5/site-packages/bzrlib/treebuilder.pyc /usr/lib/python2.5/site-packages/bzrlib/tsort.py /usr/lib/python2.5/site-packages/bzrlib/tsort.pyc /usr/lib/python2.5/site-packages/bzrlib/tuned_gzip.py /usr/lib/python2.5/site-packages/bzrlib/tuned_gzip.pyc /usr/lib/python2.5/site-packages/bzrlib/ui /usr/lib/python2.5/site-packages/bzrlib/ui/__init__.py /usr/lib/python2.5/site-packages/bzrlib/ui/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/ui/text.py /usr/lib/python2.5/site-packages/bzrlib/ui/text.pyc /usr/lib/python2.5/site-packages/bzrlib/uncommit.py /usr/lib/python2.5/site-packages/bzrlib/uncommit.pyc /usr/lib/python2.5/site-packages/bzrlib/upgrade.py /usr/lib/python2.5/site-packages/bzrlib/upgrade.pyc /usr/lib/python2.5/site-packages/bzrlib/urlutils.py /usr/lib/python2.5/site-packages/bzrlib/urlutils.pyc /usr/lib/python2.5/site-packages/bzrlib/util /usr/lib/python2.5/site-packages/bzrlib/util/__init__.py /usr/lib/python2.5/site-packages/bzrlib/util/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/util/bencode.py /usr/lib/python2.5/site-packages/bzrlib/util/bencode.pyc /usr/lib/python2.5/site-packages/bzrlib/util/configobj /usr/lib/python2.5/site-packages/bzrlib/util/configobj/__init__.py /usr/lib/python2.5/site-packages/bzrlib/util/configobj/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/util/configobj/configobj.py /usr/lib/python2.5/site-packages/bzrlib/util/configobj/configobj.pyc /usr/lib/python2.5/site-packages/bzrlib/util/effbot /usr/lib/python2.5/site-packages/bzrlib/util/effbot/__init__.py /usr/lib/python2.5/site-packages/bzrlib/util/effbot/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/__init__.py /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/gzip_consumer.py /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/gzip_consumer.pyc /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/http_client.py /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/http_client.pyc /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/http_manager.py /usr/lib/python2.5/site-packages/bzrlib/util/effbot/org/http_manager.pyc /usr/lib/python2.5/site-packages/bzrlib/util/elementtree /usr/lib/python2.5/site-packages/bzrlib/util/elementtree/ElementTree.py /usr/lib/python2.5/site-packages/bzrlib/util/elementtree/ElementTree.pyc /usr/lib/python2.5/site-packages/bzrlib/util/elementtree/__init__.py /usr/lib/python2.5/site-packages/bzrlib/util/elementtree/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/version.py /usr/lib/python2.5/site-packages/bzrlib/version.pyc /usr/lib/python2.5/site-packages/bzrlib/version_info_formats /usr/lib/python2.5/site-packages/bzrlib/version_info_formats/__init__.py /usr/lib/python2.5/site-packages/bzrlib/version_info_formats/__init__.pyc /usr/lib/python2.5/site-packages/bzrlib/version_info_formats/format_python.py /usr/lib/python2.5/site-packages/bzrlib/version_info_formats/format_python.pyc /usr/lib/python2.5/site-packages/bzrlib/version_info_formats/format_rio.py /usr/lib/python2.5/site-packages/bzrlib/version_info_formats/format_rio.pyc /usr/lib/python2.5/site-packages/bzrlib/versionedfile.py /usr/lib/python2.5/site-packages/bzrlib/versionedfile.pyc /usr/lib/python2.5/site-packages/bzrlib/weave.py /usr/lib/python2.5/site-packages/bzrlib/weave.pyc /usr/lib/python2.5/site-packages/bzrlib/weave_commands.py /usr/lib/python2.5/site-packages/bzrlib/weave_commands.pyc /usr/lib/python2.5/site-packages/bzrlib/weavefile.py /usr/lib/python2.5/site-packages/bzrlib/weavefile.pyc /usr/lib/python2.5/site-packages/bzrlib/win32utils.py /usr/lib/python2.5/site-packages/bzrlib/win32utils.pyc /usr/lib/python2.5/site-packages/bzrlib/workingtree.py /usr/lib/python2.5/site-packages/bzrlib/workingtree.pyc /usr/lib/python2.5/site-packages/bzrlib/workingtree_4.py /usr/lib/python2.5/site-packages/bzrlib/workingtree_4.pyc /usr/lib/python2.5/site-packages/bzrlib/xml4.py /usr/lib/python2.5/site-packages/bzrlib/xml4.pyc /usr/lib/python2.5/site-packages/bzrlib/xml5.py /usr/lib/python2.5/site-packages/bzrlib/xml5.pyc /usr/lib/python2.5/site-packages/bzrlib/xml6.py /usr/lib/python2.5/site-packages/bzrlib/xml6.pyc /usr/lib/python2.5/site-packages/bzrlib/xml7.py /usr/lib/python2.5/site-packages/bzrlib/xml7.pyc /usr/lib/python2.5/site-packages/bzrlib/xml_serializer.py /usr/lib/python2.5/site-packages/bzrlib/xml_serializer.pyc /usr/share/doc/packages/bzr /usr/share/doc/packages/bzr/BRANCH.TODO /usr/share/doc/packages/bzr/COPYING.txt /usr/share/doc/packages/bzr/NEWS /usr/share/doc/packages/bzr/README /usr/share/doc/packages/bzr/TODO /usr/share/doc/packages/bzr/contrib /usr/share/doc/packages/bzr/contrib/add-bzr-to-baz /usr/share/doc/packages/bzr/contrib/bash /usr/share/doc/packages/bzr/contrib/bash/bzr /usr/share/doc/packages/bzr/contrib/bash/bzr.simple /usr/share/doc/packages/bzr/contrib/create_bzr_rollup.py /usr/share/doc/packages/bzr/contrib/emacs /usr/share/doc/packages/bzr/contrib/emacs/bzr-mode.el /usr/share/doc/packages/bzr/contrib/fortune /usr/share/doc/packages/bzr/contrib/newinventory.py /usr/share/doc/packages/bzr/contrib/pwclient.full /usr/share/doc/packages/bzr/contrib/pwk /usr/share/doc/packages/bzr/contrib/upload-bzr.dev /usr/share/doc/packages/bzr/contrib/zsh /usr/share/doc/packages/bzr/contrib/zsh/_bzr /usr/share/doc/packages/bzr/doc /usr/share/doc/packages/bzr/doc/README.1st /usr/share/doc/packages/bzr/doc/bazaar-vcs.org.kid /usr/share/doc/packages/bzr/doc/centralized_workflow.txt /usr/share/doc/packages/bzr/doc/configuration.txt /usr/share/doc/packages/bzr/doc/default.css /usr/share/doc/packages/bzr/doc/developers /usr/share/doc/packages/bzr/doc/developers/HACKING /usr/share/doc/packages/bzr/doc/developers/add.txt /usr/share/doc/packages/bzr/doc/developers/annotate.txt /usr/share/doc/packages/bzr/doc/developers/api-versioning.txt /usr/share/doc/packages/bzr/doc/developers/bundle-creation.txt /usr/share/doc/packages/bzr/doc/developers/bundles.txt /usr/share/doc/packages/bzr/doc/developers/commit.txt /usr/share/doc/packages/bzr/doc/developers/container-format.txt /usr/share/doc/packages/bzr/doc/developers/dirstate.txt /usr/share/doc/packages/bzr/doc/developers/gc.txt /usr/share/doc/packages/bzr/doc/developers/incremental-push-pull.txt /usr/share/doc/packages/bzr/doc/developers/index.txt /usr/share/doc/packages/bzr/doc/developers/initial-push-pull.txt /usr/share/doc/packages/bzr/doc/developers/merge-scaling.txt /usr/share/doc/packages/bzr/doc/developers/performance-contributing.txt /usr/share/doc/packages/bzr/doc/developers/performance-roadmap-rationale.txt /usr/share/doc/packages/bzr/doc/developers/performance-roadmap.txt /usr/share/doc/packages/bzr/doc/developers/performance-use-case-analysis.txt /usr/share/doc/packages/bzr/doc/developers/performance.dot /usr/share/doc/packages/bzr/doc/developers/planned-change-integration.txt /usr/share/doc/packages/bzr/doc/developers/planned-performance-changes.txt /usr/share/doc/packages/bzr/doc/developers/profiling.txt /usr/share/doc/packages/bzr/doc/developers/revert.txt /usr/share/doc/packages/bzr/doc/developers/scratch.txt /usr/share/doc/packages/bzr/doc/developers/status.txt /usr/share/doc/packages/bzr/doc/developers/uncommit.txt /usr/share/doc/packages/bzr/doc/http_smart_server.txt /usr/share/doc/packages/bzr/doc/index.txt /usr/share/doc/packages/bzr/doc/plugins.txt /usr/share/doc/packages/bzr/doc/server.txt /usr/share/doc/packages/bzr/doc/setting_up_email.txt /usr/share/doc/packages/bzr/doc/shared_repository_layouts.txt /usr/share/doc/packages/bzr/doc/specifying_revisions.txt /usr/share/doc/packages/bzr/doc/tutorial.txt /usr/share/doc/packages/bzr/doc/using_aliases.txt /usr/share/doc/packages/bzr/doc/version_info.txt /usr/share/doc/packages/bzr/tools /usr/share/doc/packages/bzr/tools/__init__.py /usr/share/doc/packages/bzr/tools/__init__.pyc /usr/share/doc/packages/bzr/tools/biobench.py /usr/share/doc/packages/bzr/tools/bzr_epydoc /usr/share/doc/packages/bzr/tools/bzr_epydoc_uid.py /usr/share/doc/packages/bzr/tools/capture_tree.py /usr/share/doc/packages/bzr/tools/convertfile.py /usr/share/doc/packages/bzr/tools/convertinv.py /usr/share/doc/packages/bzr/tools/doc_generate /usr/share/doc/packages/bzr/tools/doc_generate/__init__.py /usr/share/doc/packages/bzr/tools/doc_generate/__init__.pyc /usr/share/doc/packages/bzr/tools/doc_generate/autodoc_bash_completion.py /usr/share/doc/packages/bzr/tools/doc_generate/autodoc_man.py /usr/share/doc/packages/bzr/tools/doc_generate/autodoc_man.pyc /usr/share/doc/packages/bzr/tools/doc_generate/autodoc_rstx.py /usr/share/doc/packages/bzr/tools/history2revfiles.py /usr/share/doc/packages/bzr/tools/http_client.py /usr/share/doc/packages/bzr/tools/riodemo.py /usr/share/doc/packages/bzr/tools/rst2html.py /usr/share/doc/packages/bzr/tools/rst2prettyhtml.py /usr/share/doc/packages/bzr/tools/trace-revisions /usr/share/doc/packages/bzr/tools/weavebench.py /usr/share/doc/packages/bzr/tools/weavemerge.sh /usr/share/doc/packages/bzr/tools/win32 /usr/share/doc/packages/bzr/tools/win32/__init__.py /usr/share/doc/packages/bzr/tools/win32/bazaar.url /usr/share/doc/packages/bzr/tools/win32/bzr-win32-bdist-postinstall.py /usr/share/doc/packages/bzr/tools/win32/bzr.iss.cog /usr/share/doc/packages/bzr/tools/win32/bzr_postinstall.py /usr/share/doc/packages/bzr/tools/win32/file_version.py /usr/share/doc/packages/bzr/tools/win32/info.txt /usr/share/doc/packages/bzr/tools/win32/ostools.py /usr/share/doc/packages/bzr/tools/win32/start_bzr.bat /usr/share/man/man1/bzr.1.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Jan 8 04:53:56 2009