I wrote this minimal code to explain my case:

import threading
import time
import eventlet
from eventlet import backdoor

eventlet.monkey_patch()

global should_printing
should_printing = True

def turn_off_printing():
    global should_printing
    should_printing = not should_printing

def printing_function():
    global should_printing
    while should_printing == True:
        print "printing"
        time.sleep(1)

def console():
    while True:
        print "inside console"
        time.sleep(1)

if __name__ == '__main__':
    eventlet.spawn(backdoor.backdoor_server, eventlet.listen(('localhost', 3000)))

    thread = threading.Thread(target=printing_function)
    thread.start()

    thread = threading.Thread(target=console)
    thread.start()

After executing it, I connect through telnet, import my module and call turn_off_printing(). But it not works. Do i made mistake, or it is not possible?

link|improve this question

71% accept rate
it doesn't work... how? – Hamish Jan 27 at 3:28
Printing is not stopped. – SuitUp Jan 27 at 3:38
1  
It doesn't look like the backdoor server is using the same namespace. Typing the function names said they were undefined and your variable 'should_printing' is undefined as well. I tested this while telnetted into the interpreter set up by the backdoor server. – fthinker Jan 27 at 6:36
So if it not possible, write answer and i will mark it. :) – SuitUp Jan 27 at 17:46
1  
Fyi, global in the global scope is useless. You only need it inside a function if you want to write to the global scope. – ThiefMaster Jan 27 at 21:37
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

As fthinker said in comment above:

It doesn't look like the backdoor server is using the same namespace. Typing the function names said they were undefined and your variable 'should_printing' is undefined as well. I tested this while telnetted into the interpreter set up by the backdoor server.

(if fthinker reply as answer post i will delete this post)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.