Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Support for the Python 3 Language
Laby currently supports programming of the ant in the Python language version 2.
Python 2 was released 20 years ago and was officially discontinued at the beginning this year. Python 3, version 3.5 and later, are the currently supported releases. Some Linux distributions are now no longer including Python 2 as part of the distribution.
This pull request is for providing Python 3 as a language for Laby. Four new files are added:
To highlight some of the changes between the Python 2 and Python 3 robot.py files:
output()
andinput()
functions have been removed.import sys;
is removed.sys.stdout.write()
andsys.stdout.flush()
are replaced by the prompt feature of Python3 builtin input() function.sys.stdin.readline()
is replaced by the Python 3 builtin input() function.look()
the string received by input() is returned without adding the complexity of enumerated constants.The help, rules, and skel files have had minor modifications from their Python 2 versions to make them suitable for use with Python 3.
Upon implementing support in Laby for the Python 3 language, the Python 2 functionality should be deprecated.
Regards, Ian Stewart. 2020-05-21