| LEFT | RIGHT |
| 1 # Sample script for use by test_dtrace.py | 1 # Sample script for use by test_dtrace.py |
| 2 # DO NOT MODIFY THIS FILE IN ANY WAY WITHOUT UPDATING test_dtrace.py!!!!! | 2 # DO NOT MODIFY THIS FILE IN ANY WAY WITHOUT UPDATING test_dtrace.py!!!!! |
| 3 | 3 |
| 4 import gc | 4 import gc |
| 5 | 5 |
| 6 def function_1() : | 6 def function_1() : |
| 7 pass | 7 pass |
| 8 | 8 |
| 9 # Check stacktrace | 9 # Check stacktrace |
| 10 def function_2() : | 10 def function_2() : |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 gc.collect() | 71 gc.collect() |
| 72 | 72 |
| 73 | 73 |
| 74 if __name__ == "__main__": | 74 if __name__ == "__main__": |
| 75 test_entry_return_and_stack() | 75 test_entry_return_and_stack() |
| 76 test_line() | 76 test_line() |
| 77 test_unicode_entry_return_and_stack() | 77 test_unicode_entry_return_and_stack() |
| 78 test_instance_creation_destruction() | 78 test_instance_creation_destruction() |
| 79 test_garbage_collection() | 79 test_garbage_collection() |
| 80 | 80 |
| LEFT | RIGHT |