diff options
Diffstat (limited to 'astroid/tests/data/all.py')
-rw-r--r-- | astroid/tests/data/all.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/astroid/tests/data/all.py b/astroid/tests/data/all.py new file mode 100644 index 00000000..23f7d2b6 --- /dev/null +++ b/astroid/tests/data/all.py @@ -0,0 +1,9 @@ + +name = 'a' +_bla = 2 +other = 'o' +class Aaa: pass + +def func(): print 'yo' + +__all__ = 'Aaa', '_bla', 'name' |