Home
last modified time | relevance | path

Searched refs:CycleError (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/
Dgraphlib.py24 class CycleError(ValueError): class
104 raise CycleError(f"nodes are in a cycle", cycle)
/third_party/python/Doc/library/
Dgraphlib.rst103 is detected, :exc:`CycleError` will be raised, but
192 If any cycle is detected, :exc:`CycleError` will be raised.
201 .. exception:: CycleError
207 The detected cycle can be accessed via the second element in the :attr:`~CycleError.args`
/third_party/node/tools/gyp/pylib/gyp/
Dcommon_test.py44 gyp.common.CycleError, gyp.common.TopologicallySorted, graph.keys(), GetEdge
Dcommon.py584 class CycleError(Exception): class
622 raise CycleError(visiting)
Dxcode_emulation.py1886 except gyp.common.CycleError as e:
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dcommon_test.py40 gyp.common.CycleError, gyp.common.TopologicallySorted,
Dcommon.py568 class CycleError(Exception): class
603 raise CycleError(visiting)
Dxcode_emulation.py1607 except gyp.common.CycleError as e:
/third_party/python/Lib/test/
Dtest_graphlib.py36 except graphlib.CycleError as e: