Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kevin Kavalakkat
Exercise 02 - conflicting Merging
Commits
a293e5bc
Commit
a293e5bc
authored
Jul 17, 2020
by
kevin
Browse files
The python code is modified and committed
parent
eec90817
Changes
1
Hide whitespace changes
Inline
Side-by-side
automaton.py
View file @
a293e5bc
...
...
@@ -46,7 +46,7 @@ class Automaton():
def
process
(
self
,
entry
):
if
entry
not
in
self
.
input_alphabet
:
raise
ValueError
(
"Unspecified input
, not accepted by this automaton!
"
)
raise
ValueError
(
"Unspecified input
. The automation cannot accept this.
"
)
self
.
_exit_state
(
entry
)
self
.
__curr_state
=
self
.
__curr_state
.
process
(
entry
)
self
.
_enter_state
(
entry
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment