Remove VOC reference (93333)

VOC has been archived by the BeeWare project, and they are instead
embedding CPython, rather than transpiling to Java bytecode.
This commit is contained in:
Carl Bordum Hansen 2022-05-31 19:29:21 +02:00 committed by GitHub
parent eb618d5ff0
commit bb900712a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -324,8 +324,7 @@ Can Python be compiled to machine code, C or some other language?
`Cython <http://cython.org/>`_ compiles a modified version of Python with
optional annotations into C extensions. `Nuitka <http://www.nuitka.net/>`_ is
an up-and-coming compiler of Python into C++ code, aiming to support the full
Python language. For compiling to Java you can consider
`VOC <https://voc.readthedocs.io>`_.
Python language.
How does Python manage memory?