From 53a5bf6be83a577aa2ce15ab9a8f83f80cbbf729 Mon Sep 17 00:00:00 2001 From: David Halter Date: Mon, 7 Jan 2013 20:20:02 +0100 Subject: [PATCH] inline tests --- test/refactor/inline.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/refactor/inline.py diff --git a/test/refactor/inline.py b/test/refactor/inline.py new file mode 100644 index 00000000..d1d9a206 --- /dev/null +++ b/test/refactor/inline.py @@ -0,0 +1,8 @@ +# --- simple +def test(): + #? 4 + a = (30 + b, c) + 1 + return test(100, a) +# +++ +def test(): + return test(100, (30 + b, c) + 1)