1
0
forked from VimPlug/jedi

Forgot to add the examples folder

This commit is contained in:
Dave Halter
2018-01-30 00:08:17 +01:00
parent c9fa335145
commit 60f89522a7
4 changed files with 16 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
Examples
========
Here you can find project structures that match other Python projects. This is
then used to check if jedi understands these structures.
+1
View File
@@ -0,0 +1 @@
SomeModel = "bar"
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "foobar.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)