https://rpython.readthedocs.io/en/latest/rpython.htmlRPython is a restricted subset of Python that is amenable to static analysis. Although there are additions to the language and some things might surprisingly work, this is a rough list of restrictions that should be considered. Note that there are tons of special cased restrictions that you’ll encounter as you go. The exact definition is “RPython is everything that our translation toolchain can accept” :)
CPython да, я немного с cython перепутал
это уже он сабсет типизированный
https://cython.readthedocs.io/en/latest/src/tutorial/cython_tutorial.htmlThe first line is a compiler directive. It tells Cython to compile your code to C++. This will enable the use of C++ language features and the C++ standard library. Note that it isn’t possible to compile Cython code to C++ with pyximport. You should use a
setup.py or a notebook to run this example.