/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_source.py

  • Committer: John Arbash Meinel
  • Date: 2006-10-16 02:29:21 UTC
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: john@arbash-meinel.com-20061016022921-bfd2e3e88b8e7cd5
Better documentation about the exception variables

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
from bzrlib.tests import TestCase, TestSkipped
34
34
 
35
35
 
36
 
# Technically, lsprof.py should be in bzrlib/util, but
37
 
# historical reasons put it in bzrlib, and make it difficult
38
 
# to move in a compatible manner
 
36
# Files which are listed here will be skipped when testing for Copyright (or
 
37
# GPL) statements.
39
38
COPYRIGHT_EXCEPTIONS = ['bzrlib/lsprof.py']
40
39
 
41
40
LICENSE_EXCEPTIONS = ['bzrlib/lsprof.py']
 
41
# Technically, 'bzrlib/lsprof.py' should be 'bzrlib/util/lsprof.py',
 
42
# (we do not check bzrlib/util/, since that is code bundled from elsewhere)
 
43
# but for compatibility with previous releases, we don't want to move it.
42
44
 
43
45
 
44
46
class TestSourceHelper(TestCase):