~bzr-pqm/bzr/bzr.dev

2052.3.1 by John Arbash Meinel
Add tests to cleanup the copyright of all source files
1
# Copyright (C) 2005, 2006 Canonical Ltd
1996.3.11 by John Arbash Meinel
Hack around loading 'copy' to make startup much faster
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1996.3.11 by John Arbash Meinel
Hack around loading 'copy' to make startup much faster
16
17
"""A version of inspect that includes what 'copy' needs.
18
19
Importing the python standard module 'copy' is far more expensive than it
20
needs to be, because copy imports 'inspect' which imports 'tokenize'.
21
And 'copy' only needs 2 small functions out of 'inspect', but has to
22
load all of 'tokenize', which makes it horribly slow.
23
24
This module is designed to use tricky hacks in import rules, to avoid this
25
overhead.
26
"""
27
6379.6.7 by Jelmer Vernooij
Move importing from future until after doc string, otherwise the doc string will disappear.
28
from __future__ import absolute_import
29
1996.3.11 by John Arbash Meinel
Hack around loading 'copy' to make startup much faster
30
31
####
32
# These are the only 2 functions that 'copy' needs from 'inspect'
33
# As you can see, they are quite trivial, and don't justify the
34
# 40ms spent to import 'inspect' because it is importing 'tokenize'
35
# These are copied verbatim from the python standard library.
36
37
# ----------------------------------------------------------- class helpers
38
def _searchbases(cls, accum):
39
    # Simulate the "classic class" search order.
40
    if cls in accum:
41
        return
42
    accum.append(cls)
43
    for base in cls.__bases__:
44
        _searchbases(base, accum)
45
46
47
def getmro(cls):
48
    "Return tuple of base classes (including cls) in method resolution order."
49
    if hasattr(cls, "__mro__"):
50
        return cls.__mro__
51
    else:
52
        result = []
53
        _searchbases(cls, result)
54
        return tuple(result)
55
56
57
def import_copy_with_hacked_inspect():
58
    """Import the 'copy' module with a hacked 'inspect' module"""
59
    # We don't actually care about 'getmro' but we need to pass
60
    # something in the list so that we get the direct module,
61
    # rather than getting the base module
62
    import sys
63
64
    # Don't hack around if 'inspect' already exists
65
    if 'inspect' in sys.modules:
66
        import copy
67
        return
68
69
    mod = __import__('bzrlib.inspect_for_copy',
70
                     globals(), locals(), ['getmro'])
71
72
    sys.modules['inspect'] = mod
73
    try:
74
        import copy
75
    finally:
76
        del sys.modules['inspect']