sgimenez / laby

Learn programming, playing with ants and spider webs ;-)
https://sgimenez.github.io/laby/
Other
98 stars 39 forks source link

python3 language support #63

Open irsbugs opened 4 years ago

irsbugs commented 4 years ago

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:

/usr/share/laby/mods/python3/
├── help
├── lib
│   └── robot.py
├── rules
└── skel

To highlight some of the changes between the Python 2 and Python 3 robot.py files:

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