/external/libchrome/third_party/jinja2/ |
D | asyncsupport.py | 15 from functools import update_wrapper 55 return update_wrapper(generate, original_generate) 79 return update_wrapper(render, original_render) 96 return update_wrapper(__call__, original_call) 112 return update_wrapper(_invoke, original_invoke) 144 Template.generate_async = update_wrapper( 146 Template.render_async = update_wrapper( 152 Template.make_module_async = update_wrapper(
|
D | compiler.py | 14 from functools import update_wrapper 71 return update_wrapper(new_func, f)
|
/external/mesa3d/src/mesa/swrast/ |
D | s_texrender.c | 30 update_wrapper(struct gl_context *ctx, struct gl_renderbuffer_attachment *att) in update_wrapper() function 88 update_wrapper(ctx, att); in _swrast_render_texture()
|
/external/python/cpython2/Lib/ |
D | functools.py | 17 def update_wrapper(wrapper, function 50 return partial(update_wrapper, wrapped=wrapped,
|
/external/python/cpython3/Lib/ |
D | functools.py | 37 def update_wrapper(wrapper, function 78 return partial(update_wrapper, wrapped=wrapped, 481 return update_wrapper(wrapper, user_function) 835 update_wrapper(wrapper, func)
|
/external/python/cpython2/Doc/library/ |
D | functools.rst | 108 .. function:: update_wrapper(wrapper, wrapped[, assigned][, updated]) 129 This is a convenience function for invoking :func:`update_wrapper` as a 131 ``partial(update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated)``.
|
/external/python/cpython2/Lib/test/ |
D | test_functools.py | 337 functools.update_wrapper(wrapper, f) 359 functools.update_wrapper(wrapper, f, (), ()) 375 functools.update_wrapper(wrapper, f, assign, update) 387 functools.update_wrapper(wrapper, max)
|
D | test_cpickle.py | 184 functools.update_wrapper(wrapper, func)
|
/external/python/cpython3/Lib/test/ |
D | test_doctest.py | 2389 functools.update_wrapper(self, func)
|
D | test_functools.py | 603 functools.update_wrapper(wrapper, f) 629 functools.update_wrapper(wrapper, f, (), ()) 647 functools.update_wrapper(wrapper, f, assign, update) 664 functools.update_wrapper(wrapper, f, assign, update) 670 functools.update_wrapper(wrapper, f, assign, update) 673 functools.update_wrapper(wrapper, f, assign, update) 682 functools.update_wrapper(wrapper, max)
|
D | pstats.pck | 24 …g���]/M?{(u'/home/gbr/devel/python/Lib/functools.pyiuupdate_wrapper(ii… 77 …�>g�h㈵��>{(u'/home/gbr/devel/python/Lib/functools.pyiuupdate_wrapper(ii…
|
D | test_xml_etree.py | 106 functools.update_wrapper(newtest, test)
|
/external/python/cpython3/Doc/library/ |
D | functools.rst | 397 .. function:: update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATE… 420 :func:`update_wrapper` may be used with callables other than functions. Any 443 This is a convenience function for invoking :func:`update_wrapper` as a 445 ``partial(update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated)``.
|
/external/tensorflow/tensorflow/python/ops/ |
D | variables.py | 955 functools.update_wrapper(_run_op, tensor_oper)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.5.rst | 174 ``update_wrapper(wrapper, wrapped)`` function that helps you write 175 well-behaved decorators. :func:`update_wrapper` copies the name, module, and 183 functools.update_wrapper(wrapper, f)
|
D | 3.4.rst | 2319 * :func:`functools.update_wrapper` and :func:`functools.wraps` now correctly
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 174 ``update_wrapper(wrapper, wrapped)`` function that helps you write 175 well-behaved decorators. :func:`update_wrapper` copies the name, module, and 183 functools.update_wrapper(wrapper, f)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4784 - Issue #17482: functools.update_wrapper (and functools.wraps) now set the 12501 - Issue #9567: functools.update_wrapper now adds a __wrapped__ attribute 12504 - Issue #3445: functools.update_wrapper now tolerates missing attributes on 12558 functools.update_wrapper. Patch by Terrence Cole. 18143 - The functions update_wrapper() and wraps() have been added to the functools
|
/external/python/cpython2/Misc/ |
D | HISTORY | 759 - The functions update_wrapper() and wraps() have been added to the functools
|