From a4b8c720e7bb69dcc82db3bfdb0a7b6f85e73c67 Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 23 Nov 2012 00:34:17 +0100 Subject: [PATCH] re.compile returns string - tests for #68 --- test/completion/std.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/completion/std.py b/test/completion/std.py index 1d79377f..9d105b42 100644 --- a/test/completion/std.py +++ b/test/completion/std.py @@ -7,6 +7,9 @@ std library stuff # ----------------- import re c = re.compile(r'a') +# re.compile should not return str -> issue #68 +#? [] +c.startswith #? int() c.match().start()