functional.py 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. """Functional utilities for Python 2.4 compatibility."""
  2. # License for code in this file that was taken from Python 2.5.
  3. # PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
  4. # --------------------------------------------
  5. #
  6. # 1. This LICENSE AGREEMENT is between the Python Software Foundation
  7. # ("PSF"), and the Individual or Organization ("Licensee") accessing and
  8. # otherwise using this software ("Python") in source or binary form and
  9. # its associated documentation.
  10. #
  11. # 2. Subject to the terms and conditions of this License Agreement, PSF
  12. # hereby grants Licensee a nonexclusive, royalty-free, world-wide
  13. # license to reproduce, analyze, test, perform and/or display publicly,
  14. # prepare derivative works, distribute, and otherwise use Python
  15. # alone or in any derivative version, provided, however, that PSF's
  16. # License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
  17. # 2001, 2002, 2003, 2004, 2005, 2006, 2007 Python Software Foundation;
  18. # All Rights Reserved" are retained in Python alone or in any derivative
  19. # version prepared by Licensee.
  20. #
  21. # 3. In the event Licensee prepares a derivative work that is based on
  22. # or incorporates Python or any part thereof, and wants to make
  23. # the derivative work available to others as provided herein, then
  24. # Licensee hereby agrees to include in any such work a brief summary of
  25. # the changes made to Python.
  26. #
  27. # 4. PSF is making Python available to Licensee on an "AS IS"
  28. # basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
  29. # IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
  30. # DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
  31. # FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
  32. # INFRINGE ANY THIRD PARTY RIGHTS.
  33. #
  34. # 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
  35. # FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
  36. # A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
  37. # OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
  38. #
  39. # 6. This License Agreement will automatically terminate upon a material
  40. # breach of its terms and conditions.
  41. #
  42. # 7. Nothing in this License Agreement shall be deemed to create any
  43. # relationship of agency, partnership, or joint venture between PSF and
  44. # Licensee. This License Agreement does not grant permission to use PSF
  45. # trademarks or trade name in a trademark sense to endorse or promote
  46. # products or services of Licensee, or any third party.
  47. #
  48. # 8. By copying, installing or otherwise using Python, Licensee
  49. # agrees to be bound by the terms and conditions of this License
  50. # Agreement.
  51. ### Begin from Python 2.5 functools.py ########################################
  52. # Summary of changes made to the Python 2.5 code below:
  53. # * Wrapped the `setattr` call in `update_wrapper` with a try-except
  54. # block to make it compatible with Python 2.3, which doesn't allow
  55. # assigning to `__name__`.
  56. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Python Software
  57. # Foundation. All Rights Reserved.
  58. ###############################################################################
  59. # update_wrapper() and wraps() are tools to help write
  60. # wrapper functions that can handle naive introspection
  61. def _compat_partial(fun, *args, **kwargs):
  62. """New function with partial application of the given arguments
  63. and keywords."""
  64. def _curried(*addargs, **addkwargs):
  65. return fun(*(args + addargs), **dict(kwargs, **addkwargs))
  66. return _curried
  67. try:
  68. from functools import partial
  69. except ImportError:
  70. partial = _compat_partial
  71. WRAPPER_ASSIGNMENTS = ('__module__', '__name__', '__doc__')
  72. WRAPPER_UPDATES = ('__dict__',)
  73. def _compat_update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS,
  74. updated=WRAPPER_UPDATES):
  75. """Update a wrapper function to look like the wrapped function
  76. wrapper is the function to be updated
  77. wrapped is the original function
  78. assigned is a tuple naming the attributes assigned directly
  79. from the wrapped function to the wrapper function (defaults to
  80. functools.WRAPPER_ASSIGNMENTS)
  81. updated is a tuple naming the attributes off the wrapper that
  82. are updated with the corresponding attribute from the wrapped
  83. function (defaults to functools.WRAPPER_UPDATES)
  84. """
  85. for attr in assigned:
  86. try:
  87. setattr(wrapper, attr, getattr(wrapped, attr))
  88. except TypeError: # Python 2.3 doesn't allow assigning to __name__.
  89. pass
  90. for attr in updated:
  91. getattr(wrapper, attr).update(getattr(wrapped, attr))
  92. # Return the wrapper so this can be used as a decorator via partial()
  93. return wrapper
  94. try:
  95. from functools import update_wrapper
  96. except ImportError:
  97. update_wrapper = _compat_update_wrapper
  98. def _compat_wraps(wrapped, assigned=WRAPPER_ASSIGNMENTS,
  99. updated=WRAPPER_UPDATES):
  100. """Decorator factory to apply update_wrapper() to a wrapper function
  101. Returns a decorator that invokes update_wrapper() with the decorated
  102. function as the wrapper argument and the arguments to wraps() as the
  103. remaining arguments. Default arguments are as for update_wrapper().
  104. This is a convenience function to simplify applying partial() to
  105. update_wrapper().
  106. """
  107. return partial(update_wrapper, wrapped=wrapped,
  108. assigned=assigned, updated=updated)
  109. try:
  110. from functools import wraps
  111. except ImportError:
  112. wraps = _compat_wraps
  113. ### End from Python 2.5 functools.py ##########################################