Home
last modified time | relevance | path

Searched refs:MissingModule (Results 1 – 8 of 8) sorted by relevance

/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
Dtest_edge_data.py39 self.assertIsInstance(node, modulegraph.MissingModule)
51 self.assertIsInstance(node, modulegraph.MissingModule)
63 self.assertIsInstance(node, modulegraph.MissingModule)
75 self.assertIsInstance(node, modulegraph.MissingModule)
87 self.assertIsInstance(node, modulegraph.MissingModule)
99 self.assertIsInstance(node, modulegraph.MissingModule)
111 self.assertIsInstance(node, modulegraph.MissingModule)
123 self.assertIsInstance(node, modulegraph.MissingModule)
135 self.assertIsInstance(node, modulegraph.MissingModule)
147 self.assertIsInstance(node, modulegraph.MissingModule)
[all …]
Dtest_relimport2.py30 self.assertIsInstance(n, modulegraph.MissingModule)
Dtest_modulegraph.py454 self.assertIsSubclass(modulegraph.MissingModule, modulegraph.BadModule)
466 self.assertNoMethods(modulegraph.MissingModule)
707 self.assertIsInstance(n, modulegraph.MissingModule)
711 self.assertIsInstance(n, modulegraph.MissingModule)
715 self.assertIsInstance(n, modulegraph.MissingModule)
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/doc/
Dchangelog.rst29 * No longer add a MissingModule node to the graph for 'collections.defaultdict'
38 * The graph will no longer contain MissingModule nodes when using 'from ... import name' to
41 There will still be MissingModule nodes for global variables in C extentions, and
42 for 'from missing import name' when 'missing' is itself a MissingModule.
215 a MissingModule node for the dotted name in the global namespace instead
219 of "pkg" contains "import sub.nomod" we now create a MissingModule node
Dmodulegraph.rst90 :class:`MissingModule` nodes, otherwise :class:`MissingModule` nodes
378 .. class:: MissingModule(identifier)
464 :class:`MissingModule`).
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/
DPKG-INFO46 * No longer add a MissingModule node to the graph for 'collections.defaultdict'
55 * The graph will no longer contain MissingModule nodes when using 'from ... import name' to
58 There will still be MissingModule nodes for global variables in C extentions, and
59 for 'from missing import name' when 'missing' is itself a MissingModule.
232 a MissingModule node for the dotted name in the global namespace instead
236 of "pkg" contains "import sub.nomod" we now create a MissingModule node
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph.egg-info/
DPKG-INFO46 * No longer add a MissingModule node to the graph for 'collections.defaultdict'
55 * The graph will no longer contain MissingModule nodes when using 'from ... import name' to
58 There will still be MissingModule nodes for global variables in C extentions, and
59 for 'from missing import name' when 'missing' is itself a MissingModule.
232 a MissingModule node for the dotted name in the global namespace instead
236 of "pkg" contains "import sub.nomod" we now create a MissingModule node
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
Dmodulegraph.py461 class MissingModule(BadModule): class
787 if isinstance(n, MissingModule):
1056 result = self.createNode(MissingModule, mname)
1221 m = self.createNode(MissingModule, _path_from_importerror(msg, name))
1259 sm = self.createNode(MissingModule, fullname)
1263 sm = self.createNode(MissingModule, fullname)