~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-19 13:23:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6386.
  • Revision ID: jelmer@canonical.com-20111219132358-uvs5a6y92gomzacd
Move importing from future until after doc string, otherwise the doc string will disappear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
# raising them.  If there's more than one exception it'd be good to see them
33
33
# all.
34
34
 
35
 
from __future__ import absolute_import
36
 
 
37
35
"""Checking of bzr objects.
38
36
 
39
37
check_refs is a concept used for optimising check. Objects that depend on other
49
47
  indicating that the revision was found/not found.
50
48
"""
51
49
 
 
50
from __future__ import absolute_import
 
51
 
52
52
from bzrlib import (
53
53
    errors,
54
54
    ui,