[Python-checkins] [typo] Fix threading.Barrier comment that used confusing punctuation (GH-28623) (GH-28625)

ambv webhook-mailer at python.org
Wed Sep 29 11:22:00 EDT 2021


https://github.com/python/cpython/commit/017a791ae47bc5700b25443f9dfcec44beb96912
commit: 017a791ae47bc5700b25443f9dfcec44beb96912
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-09-29T17:21:55+02:00
summary:

[typo] Fix threading.Barrier comment that used confusing punctuation (GH-28623) (GH-28625)

Removed extra comma in comment that indicates state of a `Barrier` as it was confusing and breaking the flow while reading.

Co-authored-by: Priyank <5903604+cpriyank at users.noreply.github.com>
(cherry picked from commit f1ca5d7f61594bf3627f0897b596877a0774c8e7)

Co-authored-by: Łukasz Langa <lukasz at langa.pl>

files:
M Lib/threading.py

diff --git a/Lib/threading.py b/Lib/threading.py
index c7f7d5f5959df..3e9577d8a5b14 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -634,7 +634,7 @@ def __init__(self, parties, action=None, timeout=None):
         self._action = action
         self._timeout = timeout
         self._parties = parties
-        self._state = 0 #0 filling, 1, draining, -1 resetting, -2 broken
+        self._state = 0  # 0 filling, 1 draining, -1 resetting, -2 broken
         self._count = 0
 
     def wait(self, timeout=None):



More information about the Python-checkins mailing list