Skip to content

Commit b440098

Browse files
author
Juha Jeronen
committed
Oops, some more deprecated getvalue in docstrings.
1 parent 066820d commit b440098

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unpythonic/seq.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,11 @@ def __or__(self, f):
175175
176176
Examples::
177177
178-
x = piped1(42) | double | inc | getvalue
178+
x = piped1(42) | double | inc | exitpipe
179179
180180
y = piped1(42) | double
181-
assert y | inc | getvalue == 85
182-
assert y | getvalue == 84 # y is not modified
181+
assert y | inc | exitpipe == 85
182+
assert y | exitpipe == 84 # y is not modified
183183
"""
184184
if f is exitpipe:
185185
return self._x

0 commit comments

Comments
 (0)