From 539681fffd96082ca3b5d18643d4f08f65c47170 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 5 Jul 2014 06:14:29 +0100 Subject: tests: Rename test scripts, changing - to _ for consistency. From now on, all new tests must use underscore. Addresses issue #727. --- tests/basics/fun_annotations.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/basics/fun_annotations.py (limited to 'tests/basics/fun_annotations.py') diff --git a/tests/basics/fun_annotations.py b/tests/basics/fun_annotations.py new file mode 100644 index 000000000..85f808ab5 --- /dev/null +++ b/tests/basics/fun_annotations.py @@ -0,0 +1,4 @@ +def foo(x: int, y: list) -> dict: + return {x: y} + +print(foo(1, [2, 3])) -- cgit v1.2.3