Merge branch 'master' into dev
This commit is contained in:
commit
eec30e12fa
@ -15,7 +15,7 @@ python setup.py develop
|
||||
## Usage
|
||||
|
||||
```bat
|
||||
turinglab <input_file> <input_string> <output_file>
|
||||
turinglab input_file output_dir [-t TESTS [TESTS ...]] [-e EMPTY_CHARACTER] [-f]
|
||||
```
|
||||
|
||||
### Example
|
||||
|
1
setup.py
1
setup.py
@ -11,7 +11,6 @@ setup(
|
||||
'pydot',
|
||||
'requests',
|
||||
'sortedcontainers'
|
||||
],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'turinglab = turinglab.__main__:main'
|
||||
|
@ -36,7 +36,9 @@ def main():
|
||||
tests = []
|
||||
|
||||
for test in args.tests:
|
||||
test = test.replace(args.empty_character, 'λ')
|
||||
|
||||
if args.empty_character:
|
||||
test = test.replace(args.empty_character, 'λ')
|
||||
|
||||
tm = Emulator(program, test)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user