Skip to content

breakpoints in a function which to be called by a thread or threads is not noticed. #41

Open
@sdeepugd

Description

@sdeepugd

check the following example

`#!/usr/bin/python

import thread
import time

def print_time( threadName, delay):
count = 0
while count < 5:
time.sleep(delay)
count += 1
print "%s: %s" % ( threadName, time.ctime(time.time()) )

try:
thread.start_new_thread( print_time, ("Thread-1", 2, ) )
thread.start_new_thread( print_time, ("Thread-2", 4, ) )
except:
print "Error: unable to start thread"

while 1:
pass`

i inserted a breakpoint at line no 12. but it did not stop.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @sdeepugd

        Issue actions

          breakpoints in a function which to be called by a thread or threads is not noticed. · Issue #41 · quantopian/qdb