相同的线程标识,如何解释?

the same thread ident, how to explain this?

我的代码在这里,我无法理解为什么线程标识是相同的数字

import threading
from werkzeug.local import Local
import time

l = Local()
l.__storage__


def add_arg(key, value):
l.__setattr__(key, value)
# time.sleep(5)


for i in range(3):
   key = 'arg' + str(i)
   t = threading.Thread(target=add_arg, args=(key, i))
   t.start()
   print(t.ident)
print(l.__storage__)

结果是:

123145354104832
123145354104832
123145354104832
{123145354104832: {'arg0': 0, 'arg1': 1, 'arg2': 2}}

然后我启用time.sleep(5),结果是:

123145311535104
123145316790272
123145322045440
{123145311535104: {'arg0': 0}, 123145316790272: {'arg1': 1}, 123145322045440: {'arg2': 2}}

任何人都可以帮我解释一下

根据the python docs

Thread identifiers may be recycled when a thread exits and another thread is created.

如果没有睡眠语句,add_arg 将在主线程再次循环之前被调用并完成。因此,每次您创建一个新的 Python 线程时,它只是使用最近完成上一个任务的系统线程(或线程 ID)。

当你添加睡眠语句时,需要一个新的系统线程(和新的id)来启动下一个任务,因为前一个任务还没有完成。