summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorCarl Bordum Hansen <carl@bordum.dk>2022-05-31 17:29:21 (GMT)
committerGitHub <noreply@github.com>2022-05-31 17:29:21 (GMT)
commitbb900712a5511ba82ef64105fe28d2a6886a8fed (patch)
treed4b1fe92eacfc8408edb6a01d98a9fdf181f1ccc /Doc/faq
parenteb618d5ff0371efead28a3afa91834e4beebf73d (diff)
downloadcpython-bb900712a5511ba82ef64105fe28d2a6886a8fed.zip
cpython-bb900712a5511ba82ef64105fe28d2a6886a8fed.tar.gz
cpython-bb900712a5511ba82ef64105fe28d2a6886a8fed.tar.bz2
Remove VOC reference (93333)
VOC has been archived by the BeeWare project, and they are instead embedding CPython, rather than transpiling to Java bytecode.
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/design.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index ff83a1b..a624fdb 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -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?