From 1f1dc55588f9763f3045dd4445f13e8a35376e1a Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 15 Jul 2010 14:47:50 +0400 Subject: [PATCH] missed testdata --- python/testData/editing/unindentTab.after.py | 4 ++++ python/testData/editing/unindentTab.before.py | 5 +++++ 2 files changed, 9 insertions(+) create mode 100644 python/testData/editing/unindentTab.after.py create mode 100644 python/testData/editing/unindentTab.before.py diff --git a/python/testData/editing/unindentTab.after.py b/python/testData/editing/unindentTab.after.py new file mode 100644 index 000000000000..287676fe1984 --- /dev/null +++ b/python/testData/editing/unindentTab.after.py @@ -0,0 +1,4 @@ +#// python 3 +class C: + def m(self): #// note: TABs instead of spaces + pass diff --git a/python/testData/editing/unindentTab.before.py b/python/testData/editing/unindentTab.before.py new file mode 100644 index 000000000000..614076a71106 --- /dev/null +++ b/python/testData/editing/unindentTab.before.py @@ -0,0 +1,5 @@ +#// python 3 +class C: + def m(self): #// note: TABs instead of spaces + pass + \ No newline at end of file