-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 additions
and
17 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
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 |
---|---|---|
|
@@ -102,3 +102,4 @@ main.py | |
node_modules/ | ||
.vscode/ | ||
.venv*/ | ||
tests/*.png |
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,19 +1,12 @@ | ||
# coding: utf-8 | ||
# Author: Roman Miroshnychenko aka Roman V.M. | ||
# E-mail: romanvm@yandex.ua | ||
|
||
from __future__ import print_function | ||
import os | ||
import sys | ||
|
||
basedir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | ||
sys.path.append(basedir) | ||
|
||
try: | ||
input = raw_input | ||
except NameError: | ||
pass | ||
|
||
from web_pdb import set_trace; set_trace(patch_stdstreams=True) | ||
foo = input('Enter something: ') | ||
print('You have entered: ' + foo) |
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