diff options
Diffstat (limited to 'tests/basics/fun_str.py')
-rw-r--r-- | tests/basics/fun_str.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/basics/fun_str.py b/tests/basics/fun_str.py new file mode 100644 index 0000000000..3cfe46b807 --- /dev/null +++ b/tests/basics/fun_str.py @@ -0,0 +1,5 @@ +# test str of function + +def f(): + pass +print(str(f)[:8]) |