~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Robert Collins
  • Date: 2005-09-26 08:56:15 UTC
  • mto: (1092.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050926085615-99b8fb35f41b541d
massive patch from Alexander Belchenko - many PEP8 fixes, removes unused function uuid

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
ROOT_ID = "TREE_ROOT"
21
21
 
22
22
 
23
 
import sys, os.path, types, re
 
23
import os.path
 
24
import re
 
25
import sys
 
26
import types
24
27
 
25
28
import bzrlib
26
29
from bzrlib.errors import BzrError, BzrCheckError
27
30
 
28
 
from bzrlib.osutils import uuid, quotefn, splitpath, joinpath, appendpath
 
31
from bzrlib.osutils import quotefn, splitpath, joinpath, appendpath
29
32
from bzrlib.trace import mutter
30
33
from bzrlib.errors import NotVersionedError
31
 
        
 
34
 
32
35
 
33
36
class InventoryEntry(object):
34
37
    """Description of a versioned file.