~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/performance-roadmap.txt

  • Committer: Vincent Ladeuil
  • Date: 2008-08-26 08:25:27 UTC
  • mto: (3668.1.1 trunk) (3703.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 3669.
  • Revision ID: v.ladeuil+lp@free.fr-20080826082527-109yyxzc0u24oeel
Fix all calls to tempfile.mkdtemp to osutils.mkdtemp.

* bzrlib/transform.py:
(TransformPreview.__init__): Use osutils.mkdtemp instead of
tempfile.mkdtemp.

* bzrlib/tests/test_whitebox.py:
(MoreTests.test_relpath): Use osutils.mkdtemp instead of
tempfile.mkdtemp.

* bzrlib/tests/test_setup.py:
(TestSetup.test_build_and_install): Use osutils.mkdtemp instead of
tempfile.mkdtemp.

* bzrlib/tests/test_bundle.py:
(BundleTester.get_checkout): Use osutils.mkdtemp instead of
tempfile.mkdtemp.

* bzrlib/tests/blackbox/test_outside_wt.py:
(TestOutsideWT.test_cwd_log,
TestOutsideWT.test_diff_outside_tree): Use osutils.mkdtemp instead
of tempfile.mkdtemp.

* bzrlib/smart/repository.py:
(SmartServerRepositoryTarball._copy_to_tempdir): Use
osutils.mkdtemp instead of tempfile.mkdtemp.
(SmartServerRepositoryTarball._tarfile_response): Line too long.

* bzrlib/remote.py:
(RemoteRepository._copy_repository_tarball): Use osutils.mkdtemp
instead of tempfile.mkdtemp.

* bzrlib/osutils.py:
(_mac_mkdtemp): Add docstring.

* bzrlib/mail_client.py:
(ExternalMailClient.compose): Use osutils.mkdtemp instead of
tempfile.mkdtemp.

* bzrlib/diff.py:
(DiffFromTool.__init__): Use osutils.mkdtemp instead of
tempfile.mkdtemp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
==========================
 
2
Bazaar Performance Roadmap
 
3
==========================
 
4
 
 
5
.. Mark sections in included files as following:
 
6
..   level 1 ========
 
7
..   level 2 --------
 
8
..   level 3 ~~~~~~~~
 
9
..   level 4 ^^^^^^^^ (it is better not to use nesting deeper than 3 levels)
 
10
 
 
11
.. contents::
 
12
.. sectnum::
 
13
 
 
14
About the performance roadmap
 
15
#############################
 
16
 
 
17
.. include:: performance-roadmap-rationale.txt
 
18
 
 
19
.. include:: planned-performance-changes.txt
 
20
 
 
21
.. include:: performance-contributing.txt
 
22
 
 
23
.. include:: planned-change-integration.txt
 
24
 
 
25
Analysis of use cases
 
26
#####################
 
27
 
 
28
.. include:: performance-use-case-analysis.txt
 
29
 
 
30
Use cases
 
31
#########
 
32
 
 
33
.. include:: initial-push-pull.txt
 
34
 
 
35
.. include:: incremental-push-pull.txt
 
36
 
 
37
.. include:: add.txt
 
38
 
 
39
.. include:: commit.txt
 
40
 
 
41
.. include:: diff.txt
 
42
 
 
43
.. include:: gc.txt
 
44
 
 
45
.. include:: revert.txt
 
46
 
 
47
.. include:: status.txt
 
48
 
 
49
.. include:: annotate.txt
 
50
 
 
51
.. include:: merge-scaling.txt
 
52
 
 
53
.. include:: bundle-creation.txt
 
54
 
 
55
.. include:: uncommit.txt
 
56
 
 
57
.. include:: missing.txt
 
58
 
 
59
Subsystem designs
 
60
#################
 
61
 
 
62
.. include:: directory-fingerprints.txt