functional.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. # * swapped ``partial`` for ``curry`` to maintain backwards-compatibility
  54. # in Django.
  55. # * Wrapped the ``setattr`` call in ``update_wrapper`` with a try-except
  56. # block to make it compatible with Python 2.3, which doesn't allow
  57. # assigning to ``__name__``.
  58. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Python Software
  59. # Foundation. All Rights Reserved.
  60. ###############################################################################
  61. # update_wrapper() and wraps() are tools to help write
  62. # wrapper functions that can handle naive introspection
  63. def _compat_curry(fun, *args, **kwargs):
  64. """New function with partial application of the given arguments
  65. and keywords."""
  66. def _curried(*addargs, **addkwargs):
  67. return fun(*(args+addargs), **dict(kwargs, **addkwargs))
  68. return _curried
  69. try:
  70. from functools import partial as curry
  71. except ImportError:
  72. curry = _compat_curry
  73. WRAPPER_ASSIGNMENTS = ('__module__', '__name__', '__doc__')
  74. WRAPPER_UPDATES = ('__dict__',)
  75. def _compat_update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS,
  76. updated=WRAPPER_UPDATES):
  77. """Update a wrapper function to look like the wrapped function
  78. wrapper is the function to be updated
  79. wrapped is the original function
  80. assigned is a tuple naming the attributes assigned directly
  81. from the wrapped function to the wrapper function (defaults to
  82. functools.WRAPPER_ASSIGNMENTS)
  83. updated is a tuple naming the attributes off the wrapper that
  84. are updated with the corresponding attribute from the wrapped
  85. function (defaults to functools.WRAPPER_UPDATES)
  86. """
  87. for attr in assigned:
  88. try:
  89. setattr(wrapper, attr, getattr(wrapped, attr))
  90. except TypeError: # Python 2.3 doesn't allow assigning to __name__.
  91. pass
  92. for attr in updated:
  93. getattr(wrapper, attr).update(getattr(wrapped, attr))
  94. # Return the wrapper so this can be used as a decorator via curry()
  95. return wrapper
  96. try:
  97. from functools import update_wrapper
  98. except ImportError:
  99. update_wrapper = _compat_update_wrapper
  100. def _compat_wraps(wrapped, assigned=WRAPPER_ASSIGNMENTS,
  101. updated=WRAPPER_UPDATES):
  102. """Decorator factory to apply update_wrapper() to a wrapper function
  103. Returns a decorator that invokes update_wrapper() with the decorated
  104. function as the wrapper argument and the arguments to wraps() as the
  105. remaining arguments. Default arguments are as for update_wrapper().
  106. This is a convenience function to simplify applying curry() to
  107. update_wrapper().
  108. """
  109. return curry(update_wrapper, wrapped=wrapped,
  110. assigned=assigned, updated=updated)
  111. try:
  112. from functools import wraps
  113. except ImportError:
  114. wraps = _compat_wraps
  115. ### End from Python 2.5 functools.py ##########################################