builtins.py
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:5k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. #
  2. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining
  5. # a copy of this software and associated documentation files (the
  6. # "Software"), to deal in the Software without restriction, including
  7. # without limitation the rights to use, copy, modify, merge, publish,
  8. # distribute, sublicense, and/or sell copies of the Software, and to
  9. # permit persons to whom the Software is furnished to do so, subject to
  10. # the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included
  13. # in all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  16. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. #
  23. # Portions of the following are derived from the compat.py file in
  24. # Twisted, under the following copyright:
  25. #
  26. # Copyright (c) 2001-2004 Twisted Matrix Laboratories
  27. __doc__ = """
  28. Compatibility idioms for __builtin__ names
  29. This module adds names to the __builtin__ module for things that we want
  30. to use in SCons but which don't show up until later Python versions than
  31. the earliest ones we support.
  32. This module checks for the following __builtin__ names:
  33.         all()
  34.         any()
  35.         bool()
  36.         dict()
  37.         True
  38.         False
  39.         zip()
  40. Implementations of functions are *NOT* guaranteed to be fully compliant
  41. with these functions in later versions of Python.  We are only concerned
  42. with adding functionality that we actually use in SCons, so be wary
  43. if you lift this code for other uses.  (That said, making these more
  44. nearly the same as later, official versions is still a desirable goal,
  45. we just don't need to be obsessive about it.)
  46. If you're looking at this with pydoc and various names don't show up in
  47. the FUNCTIONS or DATA output, that means those names are already built in
  48. to this version of Python and we don't need to add them from this module.
  49. """
  50. __revision__ = "src/engine/SCons/compat/builtins.py 3057 2008/06/09 22:21:00 knight"
  51. import __builtin__
  52. try:
  53.     all
  54. except NameError:
  55.     # Pre-2.5 Python has no all() function.
  56.     def all(iterable):
  57.         """
  58.         Returns True if all elements of the iterable are true.
  59.         """
  60.         for element in iterable:
  61.             if not element:
  62.                 return False
  63.         return True
  64.     __builtin__.all = all
  65.     all = all
  66. try:
  67.     any
  68. except NameError:
  69.     # Pre-2.5 Python has no any() function.
  70.     def any(iterable):
  71.         """
  72.         Returns True if any element of the iterable is true.
  73.         """
  74.         for element in iterable:
  75.             if element:
  76.                 return True
  77.         return False
  78.     __builtin__.any = any
  79.     any = any
  80. try:
  81.     bool
  82. except NameError:
  83.     # Pre-2.2 Python has no bool() function.
  84.     def bool(value):
  85.         """Demote a value to 0 or 1, depending on its truth value.
  86.         This is not to be confused with types.BooleanType, which is
  87.         way too hard to duplicate in early Python versions to be
  88.         worth the trouble.
  89.         """
  90.         return not not value
  91.     __builtin__.bool = bool
  92.     bool = bool
  93. try:
  94.     dict
  95. except NameError:
  96.     # Pre-2.2 Python has no dict() keyword.
  97.     def dict(seq=[], **kwargs):
  98.         """
  99.         New dictionary initialization.
  100.         """
  101.         d = {}
  102.         for k, v in seq:
  103.             d[k] = v
  104.         d.update(kwargs)
  105.         return d
  106.     __builtin__.dict = dict
  107. try:
  108.     False
  109. except NameError:
  110.     # Pre-2.2 Python has no False keyword.
  111.     __builtin__.False = not 1
  112.     # Assign to False in this module namespace so it shows up in pydoc output.
  113.     False = False
  114. try:
  115.     True
  116. except NameError:
  117.     # Pre-2.2 Python has no True keyword.
  118.     __builtin__.True = not 0
  119.     # Assign to True in this module namespace so it shows up in pydoc output.
  120.     True = True
  121. #
  122. try:
  123.     zip
  124. except NameError:
  125.     # Pre-2.2 Python has no zip() function.
  126.     def zip(*lists):
  127.         """
  128.         Emulates the behavior we need from the built-in zip() function
  129.         added in Python 2.2.
  130.         Returns a list of tuples, where each tuple contains the i-th
  131.         element rom each of the argument sequences.  The returned
  132.         list is truncated in length to the length of the shortest
  133.         argument sequence.
  134.         """
  135.         result = []
  136.         for i in xrange(min(map(len, lists))):
  137.             result.append(tuple(map(lambda l, i=i: l[i], lists)))
  138.         return result
  139.     __builtin__.zip = zip
  140. #if sys.version_info[:3] in ((2, 2, 0), (2, 2, 1)):
  141. #    def lstrip(s, c=string.whitespace):
  142. #        while s and s[0] in c:
  143. #            s = s[1:]
  144. #        return s
  145. #    def rstrip(s, c=string.whitespace):
  146. #        while s and s[-1] in c:
  147. #            s = s[:-1]
  148. #        return s
  149. #    def strip(s, c=string.whitespace, l=lstrip, r=rstrip):
  150. #        return l(r(s, c), c)
  151. #
  152. #    object.__setattr__(str, 'lstrip', lstrip)
  153. #    object.__setattr__(str, 'rstrip', rstrip)
  154. #    object.__setattr__(str, 'strip', strip)