Skip to content

test_winreg is blocking #410

@slozier

Description

@slozier

The following code isn't terminating:

import threading

def test_thread():
    class Thread(threading.Thread):
        def run(self):
            print("run")

    thread = Thread()
    thread.start()
    print("join")
    thread.join()
    print("done")
    
test_thread()

There are some TODOs in _thread.cs so that might be the issue.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions