Skip to content

Commit d87d7bc

Browse files
committed
doc: del 3dots between doctests exceptions
1 parent 3da25a4 commit d87d7bc

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

docs/source/pipelines.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ is asked, the plan comes out empty:
9696
ExecutionPlan(needs=[], provides=[], x0 steps: )
9797
>>> plan.validate()
9898
Traceback (most recent call last):
99-
...
10099
ValueError: Unsolvable graph:
101100
+--Network(x8 nodes, x3 ops: mul1, sub1, abspow1)
102101
+--possible inputs: ['a', 'b', 'ab', 'a_minus_ab']
@@ -343,7 +342,6 @@ You may still abort on failures, later, by raising an appropriate exception from
343342

344343
>>> sol.scream_if_incomplete()
345344
Traceback (most recent call last):
346-
...
347345
graphtik.base.IncompleteExecutionError:
348346
Not completed x2 operations ['exercise', 'get_out'] due to x1 failures and x0 partial-ops:
349347
+--get_out: ValueError('Quarantined!')

graphtik/jsonpointer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ def resolve_path(
210210
211211
>>> resolve_path(dt, '/pi/BAD')
212212
Traceback (most recent call last):
213-
...
214213
graphtik.jsonpointer.ResolveError: Failed resolving step (#2) "BAD" of path '/pi/BAD'.
215214
Check debug logs.
216215

graphtik/modifier.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,6 @@ def varargs(name: str, accessor: Accessor = None, jsonp=None) -> _Modifier:
772772
{'a': 5, 'sum': [5]}
773773
>>> graph(a=5, b=0xBAD)
774774
Traceback (most recent call last):
775-
...
776775
ValueError: Failed matching inputs <=> needs for FnOp(name='enlist',
777776
needs=['a', 'b'(+)], provides=['sum'], fn='enlist'):
778777
1. Expected varargs inputs to be non-str iterables: {'b'(+): 2989}
@@ -785,7 +784,6 @@ def varargs(name: str, accessor: Accessor = None, jsonp=None) -> _Modifier:
785784
786785
>>> graph(a=5, b="mistake")
787786
Traceback (most recent call last):
788-
...
789787
ValueError: Failed matching inputs <=> needs for FnOp(name='enlist',
790788
needs=['a', 'b'(+)],
791789
provides=['sum'],

0 commit comments

Comments
 (0)