Bug report
Bug description:
Bug report
Bug description:
The documentation for threading.Thread states that the group parameter "should be None". However, the actual implementation uses assert group is None and raises AssertionError if a non-None value is passed.
Reproduction:
import threading
threading.Thread(1) # any non-None value
CPython versions tested on:
3.14
Operating systems tested on:
Windows
Linked PRs
Bug report
Bug description:
Bug report
Bug description:
The documentation for
threading.Threadstates that thegroupparameter "should be None". However, the actual implementation usesassert group is Noneand raisesAssertionErrorif a non-None value is passed.Reproduction:
CPython versions tested on:
3.14
Operating systems tested on:
Windows
Linked PRs