Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
files: ^stubs/stubs/
args: [--settings-file, stubs/tox.ini]
- repo: https://github.com/PyCQA/docformatter
rev: v1.7.7
rev: v1.7.8
hooks:
- id: docformatter
files: ^src/
Expand Down
7 changes: 4 additions & 3 deletions src/java/lang/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -856,9 +856,10 @@ def __init__(self, message=None, cause=None):


class Thread(Object):
"""A thread is a thread of execution in a program. The Java Virtual
Machine allows an application to have multiple threads of execution
running concurrently.
"""A thread is a thread of execution in a program.

The Java Virtual Machine allows an application to have multiple
threads of execution running concurrently.

Every thread has a name for identification purposes. More than one
thread may have the same name. If a name is not specified when a
Expand Down