Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Doc/library/_thread.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ This module defines the following constants and functions:
This is now a synonym of the built-in :exc:`RuntimeError`.


.. data:: LockType

This is the type of lock objects.


.. function:: start_new_thread(function, args[, kwargs])

Start a new thread and return its identifier. The thread executes the
Expand Down Expand Up @@ -162,6 +157,11 @@ This module defines the following constants and functions:
.. versionadded:: 3.2


.. class:: LockType

This is the type of lock objects.


Lock objects have the following methods:


Expand Down
Loading