We're sorry but this page doesn't work properly without JavaScript enabled. Please enable it to continue.
Feedback

A Python implementation in Rust?

Formale Metadaten

Titel
A Python implementation in Rust?
Serientitel
Anzahl der Teile
132
Autor
Lizenz
CC-Namensnennung - keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 3.0 Unported:
Sie dürfen das Werk bzw. den Inhalt zu jedem legalen und nicht-kommerziellen Zweck nutzen, verändern und in unveränderter oder veränderter Form vervielfältigen, verbreiten und öffentlich zugänglich machen, sofern Sie den Namen des Autors/Rechteinhabers in der von ihm festgelegten Weise nennen und das Werk bzw. diesen Inhalt auch in veränderter Form nur unter den Bedingungen dieser Lizenz weitergeben
Identifikatoren
Herausgeber
Erscheinungsjahr
Sprache

Inhaltliche Metadaten

Fachgebiet
Genre
Abstract
Rust is a fairly new programming language aimed as a competitor of C. There are already attempts to write extension modules in rust and load them into CPython. A whole new approach would be to re-implement the Python language in rust. This is what the rspython project is about: implementing a python interpreter in rust. Rust already has many features such as vectors, hashmaps and strings as unicode. There also exist already modules for regular expressions and dealing with files, so a lot can be re-used in this area. During this talk we will dive into rust and python and the design of the rspython. We will present some challenges and opportunities. Also we will show the current state of this project in a demo.