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 8505553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T02:21:15+00:00 2026-06-11T02:21:15+00:00

I have a signal handler to handle ctrl-c interrupt. If in the signal handler

  • 0

I have a signal handler to handle ctrl-c interrupt. If in the signal handler I want to read a variable set in my main script, is there an alternative to using a “global” statement when setting the variable?

I don’t mind doing this, but read this post (Do you use the "global" statement in Python?) in which someone commented that there should be no reason to ever use global.

What is the alternative in this case?

My code looks like this:


def signal_handler(signal, frame):
    print "in sig handler - g_var=%s" % g_var

def main():
    global g_var
    g_var = "test"

    time.sleep(120)


if __name__ == '__main__':
    signal.signal(signal.SIGINT, signal_handler)
    main()
  • 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. Editorial Team
    Editorial Team
    2026-06-11T02:21:17+00:00Added an answer on June 11, 2026 at 2:21 am

    You can use a closure as the signal handler that acquires its state from the main script:

    import signal
    import sys
    import time
    
    def main_function():
    
        data_for_signal_handler = 10
    
        def signal_handler(*args):
            print data_for_signal_handler
            sys.exit()
    
        signal.signal(signal.SIGINT, signal_handler) # Or whatever signal
    
        while True:
            data_for_signal_handler += 1
            time.sleep(0.5)
    
    if __name__ == '__main__':
        main_function()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple Python script that uses a signal handler for Ctl-C. If
I am writing a multithreaded program where I want to handle a possible Ctrl-C
My requirement is: I have a signal handler in my tool, which is registered
gcc (GCC) 4.6.0 c89 I have a signal handler declared like this: /* Setup
I have an http server (launched using http.Handle ) and I would like to
In my signal.h file I have added a signal handler like this: #define SIG_WPG
I have wrote a server program that can handle multiple client by using fork().
I am coding in C++ in Linux. I have handled the ctrl C signal
My signal handler looks like: volatile sig_atomic_t loop = 1; void handle() { loop
I have a signal that blocks SIGINT and basically says Sorry, you can't quit.\n

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.