-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from illume/python-the-third
Python the Third
- Loading branch information
Showing
85 changed files
with
10,259 additions
and
9,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
dist/ | ||
build/ | ||
*.egg-info/ | ||
|
||
# Virtual environments | ||
venv/ | ||
env/ | ||
.env/ | ||
|
||
# IDE specific files | ||
.idea/ | ||
.vscode/ | ||
|
||
# Compiled Python files | ||
*.pyc | ||
|
||
# Logs | ||
*.log | ||
|
||
# Miscellaneous | ||
.DS_Store |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
import sys | ||
#sys.path.insert(0, "lib") | ||
|
||
# sys.path.insert(0, "lib") | ||
|
||
import zanthor.main | ||
|
||
|
||
def main(): | ||
print ("running main()") | ||
print("running main()") | ||
zanthor.main.main() | ||
|
||
|
||
|
||
if __name__ == "__main__": | ||
zanthor.main.main() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import sys | ||
#sys.path.insert(0, "lib") | ||
|
||
# sys.path.insert(0, "lib") | ||
|
||
import zanthor.main | ||
|
||
if __name__ == "__main__": | ||
zanthor.main.main() | ||
|
Oops, something went wrong.