~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/treeshape.py

  • Committer: Patrick Regan
  • Date: 2009-12-02 20:34:07 UTC
  • mto: (4852.3.3 2.1.0b4-doc-updates)
  • mto: This revision was merged to the branch mainline in revision 4856.
  • Revision ID: patrick.rubbs.regan@gmail.com-20091202203407-fjd0mshgn3j3foel
Removed trailing whitespace from files in doc directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2010 Canonical Ltd
 
1
# Copyright (C) 2005 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
41
41
 
42
42
    The template is built relative to the Python process's current
43
43
    working directory.
44
 
 
45
 
    ('foo/',) will build a directory.
46
 
    ('foo', 'bar') will write 'bar' to 'foo'
47
 
    ('foo@', 'linktarget') will raise an error
48
44
    """
49
45
    for tt in template:
50
46
        name = tt[0]
51
47
        if name[-1] == '/':
52
48
            os.mkdir(name)
53
49
        elif name[-1] == '@':
54
 
            os.symlink(tt[1], tt[0][:-1])
 
50
            raise NotImplementedError('symlinks not handled yet')
55
51
        else:
56
52
            f = file(name, 'wb')
57
53
            try: