diff options
author | robot-piglet <[email protected]> | 2025-06-22 18:50:56 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-06-22 19:04:42 +0300 |
commit | c7cbc6d480c5488ff6e921c709680fd2c1340a10 (patch) | |
tree | 10843f44b67c0fb5717ad555556064095f701d8c /contrib/python/Twisted/py3/twisted/trial/_dist/functional.py | |
parent | 26d391cdb94d2ce5efc8d0cc5cea7607dc363c0b (diff) |
Intermediate changes
commit_hash:28750b74281710ec1ab5bdc2403c8ab24bdd164b
Diffstat (limited to 'contrib/python/Twisted/py3/twisted/trial/_dist/functional.py')
-rw-r--r-- | contrib/python/Twisted/py3/twisted/trial/_dist/functional.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/Twisted/py3/twisted/trial/_dist/functional.py b/contrib/python/Twisted/py3/twisted/trial/_dist/functional.py index 8bb5ecf7a4f..f0258bf44c2 100644 --- a/contrib/python/Twisted/py3/twisted/trial/_dist/functional.py +++ b/contrib/python/Twisted/py3/twisted/trial/_dist/functional.py @@ -30,7 +30,7 @@ def fromOptional(default: _A, optional: Optional[_A]) -> _A: def takeWhile(condition: Callable[[_A], bool], xs: Iterable[_A]) -> Iterable[_A]: """ - :return: An iterable over C{xs} that stops when C{condition} returns + @return: An iterable over C{xs} that stops when C{condition} returns ``False`` based on the value of iterated C{xs}. """ for x in xs: |