Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 153073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:44:11+00:00 2026-05-11T09:44:11+00:00

If I have a function : @aDecorator def myfunc1(): # do something here if

  • 0

If I have a function :

 @aDecorator def myfunc1():   # do something here  if __name__ = '__main__':   # this will call the function and will use the decorator @aDecorator   myfunc1()    # now I want the @aDecorator to be replaced with the decorator @otherDecorator   # so that when this code executes, the function no longer goes through   # @aDecorator, but instead through @otherDecorator. How can I do this?   myfunc1() 

Is it possible to replace a decorator at runtime?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T09:44:11+00:00Added an answer on May 11, 2026 at 9:44 am

    I don’t know if there’s a way to ‘replace’ a decorator once it has been applied, but I guess that probably there’s not, because the function has already been changed.

    You might, anyway, apply a decorator at runtime based on some condition:

    #!/usr/bin/env python  class PrintCallInfo:     def __init__(self,f):         self.f = f     def __call__(self,*args,**kwargs):         print '-->',self.f.__name__,args,kwargs         r = self.f(*args,**kwargs)         print '<--',self.f.__name__,'returned: ',r         return r  # the condition to modify the function... some_condition=True  def my_decorator(f):     if (some_condition): # modify the function         return PrintCallInfo(f)     else: # leave it as it is         return f  @my_decorator def foo():     print 'foo'  @my_decorator def bar(s):     print 'hello',s     return s  @my_decorator def foobar(x=1,y=2):     print x,y     return x + y  foo() bar('world') foobar(y=5) 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 112k
  • Answers 112k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I found the solution, there is a reference link with… May 11, 2026 at 9:50 pm
  • Editorial Team
    Editorial Team added an answer There's no internal try-catch happening when using the as keyword.… May 11, 2026 at 9:50 pm
  • Editorial Team
    Editorial Team added an answer You can't alter the existing columns for identity. You have… May 11, 2026 at 9:50 pm

Related Questions

Is there any way of writing a decorator such that the following would work?
I have a class that I wish to expose as a remote service using
As an example: def get_booking(f=None): print "Calling get_booking Decorator" def wrapper(request, **kwargs): booking =
I am writing a web-framework for Python, of which the goal is to be

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.