| Index: tools/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/script.py
|
| diff --git a/tools/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/script.py b/tools/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/script.py
|
| deleted file mode 100644
|
| index 901c332af9d4073a9c371e32e7d0095f4c5dfd18..0000000000000000000000000000000000000000
|
| --- a/tools/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/script.py
|
| +++ /dev/null
|
| @@ -1,51 +0,0 @@
|
| -
|
| -import toplevel_existing
|
| -import toplevel_nonexisting
|
| -
|
| -class MyClass:
|
| - import toplevel_class_existing
|
| - import toplevel_class_nonexisting
|
| -
|
| -if a == b:
|
| - import toplevel_conditional_existing
|
| - import toplevel_conditional_nonexisting
|
| -
|
| - try:
|
| - import toplevel_conditional_import_existing
|
| - import toplevel_conditional_import_nonexisting
|
| - except:
|
| - import toplevel_conditional_import2_existing
|
| - import toplevel_conditional_import2_nonexisting
|
| -
|
| -try:
|
| - import toplevel_import_existing
|
| - import toplevel_import_nonexisting
|
| -except:
|
| - import toplevel_import2_existing
|
| - import toplevel_import2_nonexisting
|
| -
|
| -def function():
|
| - import function_existing
|
| - import function_nonexisting
|
| -
|
| - class MyClass:
|
| - import function_class_existing
|
| - import function_class_nonexisting
|
| -
|
| - if a == b:
|
| - import function_conditional_existing
|
| - import function_conditional_nonexisting
|
| -
|
| - try:
|
| - import function_conditional_import_existing
|
| - import function_conditional_import_nonexisting
|
| - except:
|
| - import function_conditional_import2_existing
|
| - import function_conditional_import2_nonexisting
|
| -
|
| - try:
|
| - import function_import_existing
|
| - import function_import_nonexisting
|
| - except:
|
| - import function_import2_existing
|
| - import function_import2_nonexisting
|
|
|