diff options
Diffstat (limited to 'Lib/test/dis_module.py')
-rw-r--r-- | Lib/test/dis_module.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/dis_module.py b/Lib/test/dis_module.py new file mode 100644 index 0000000..afbf600 --- /dev/null +++ b/Lib/test/dis_module.py @@ -0,0 +1,5 @@ + +# A simple module for testing the dis module. + +def f(): pass +def g(): pass |