]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove VOC reference (93333)
authorCarl Bordum Hansen <carl@bordum.dk>
Tue, 31 May 2022 17:29:21 +0000 (19:29 +0200)
committerGitHub <noreply@github.com>
Tue, 31 May 2022 17:29:21 +0000 (10:29 -0700)
VOC has been archived by the BeeWare project, and they are instead
embedding CPython, rather than transpiling to Java bytecode.

Doc/faq/design.rst

index ff83a1b8134b7799042021d1ab3fe9f238962e8b..a624fdb07a17df7edac9a7fd084e504e37fad472 100644 (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?