Home
last modified time | relevance | path

Searched refs:update_wrapper (Results 1 – 19 of 19) sorted by relevance

/external/libchrome/third_party/jinja2/
Dasyncsupport.py15 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(
Dcompiler.py14 from functools import update_wrapper
71 return update_wrapper(new_func, f)
/external/mesa3d/src/mesa/swrast/
Ds_texrender.c30 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/
Dfunctools.py17 def update_wrapper(wrapper, function
50 return partial(update_wrapper, wrapped=wrapped,
/external/python/cpython3/Lib/
Dfunctools.py37 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/
Dfunctools.rst108 .. 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/
Dtest_functools.py337 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)
Dtest_cpickle.py184 functools.update_wrapper(wrapper, func)
/external/python/cpython3/Lib/test/
Dtest_doctest.py2389 functools.update_wrapper(self, func)
Dtest_functools.py603 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)
Dpstats.pck24 …g���]/M?{(���u'���/home/gbr/devel/python/Lib/functools.pyi���u���update_wrapper(���i���i���…
77 …�>g�h㈵��>{(���u'���/home/gbr/devel/python/Lib/functools.pyi���u���update_wrapper(���i���i���…
Dtest_xml_etree.py106 functools.update_wrapper(newtest, test)
/external/python/cpython3/Doc/library/
Dfunctools.rst397 .. 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/
Dvariables.py955 functools.update_wrapper(_run_op, tensor_oper)
/external/python/cpython3/Doc/whatsnew/
D2.5.rst174 ``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)
D3.4.rst2319 * :func:`functools.update_wrapper` and :func:`functools.wraps` now correctly
/external/python/cpython2/Doc/whatsnew/
D2.5.rst174 ``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/
DHISTORY4784 - 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/
DHISTORY759 - The functions update_wrapper() and wraps() have been added to the functools