We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 066820d commit b440098Copy full SHA for b440098
unpythonic/seq.py
@@ -175,11 +175,11 @@ def __or__(self, f):
175
176
Examples::
177
178
- x = piped1(42) | double | inc | getvalue
+ x = piped1(42) | double | inc | exitpipe
179
180
y = piped1(42) | double
181
- assert y | inc | getvalue == 85
182
- assert y | getvalue == 84 # y is not modified
+ assert y | inc | exitpipe == 85
+ assert y | exitpipe == 84 # y is not modified
183
"""
184
if f is exitpipe:
185
return self._x
0 commit comments