~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/graph.py

  • Committer: John Arbash Meinel
  • Date: 2009-07-29 21:35:05 UTC
  • mfrom: (4576 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4577.
  • Revision ID: john@arbash-meinel.com-20090729213505-tkqsvy1zfpocu75w
Merge bzr.dev 4576 in prep for NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Canonical Ltd
 
1
# Copyright (C) 2007, 2008, 2009 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
1655
1655
            removed.add(node)
1656
1656
 
1657
1657
    return result
 
1658
 
 
1659
 
 
1660
_counters = [0,0,0,0,0,0,0]
 
1661
try:
 
1662
    from bzrlib._known_graph_pyx import KnownGraph
 
1663
except ImportError:
 
1664
    from bzrlib._known_graph_py import KnownGraph