vote up 2 vote down star
1

I don't really get the concept of "bytecode interpreter" in the context of CPython. Can someone shed some light over the whole picture?

Does it mean that CPython will compile and execute pyc file (bytecode file?). Then what compile py file to pyc file? And how is Jython different from CPython (except they are implemented in different languages).

I also read somewhere that Python is C++ interpretation. Is this correct? And what does that mean?

I'm still very new to Python, so forgive me if I ask the dumb questions... Thank you so much!

flag

75% accept rate

2 Answers

vote up 5 vote down check

CPython is the implementation of Python in C. It's the first implementation, and still the main one that people mean when they talk about Python. It compiles .py files to .pyc files. .pyc files contain bytecodes. The CPython implementation also interprets those bytecodes. CPython is not written in C++, it is C.

The compilation from .py to .pyc happens transparently as needed. When you execute a .py file, it will first be compiled to a .pyc file if needed, then the .pyc file will be interpreted.

Jython is different because (in addition to being implemented in Java instead of C) it compiles .py files into .class files so they can be executed in the JVM.

link|flag
Does Jython convert the Python code to Java and then compile to Jave bytecode? – Casey Oct 29 at 16:05
I don't know if it produces Java as an intermediate form. – Ned Batchelder Oct 29 at 17:01
1  
AFAIK Jython can produce Java as an intermediate form if requested, but it usually just produces Java bytecode. – MAK Oct 29 at 19:19
vote up 4 vote down

CPython is both the bytecode compiler, and interpreter (virtual machine).

It automatically detects if no existing pre-compiler file (.pyc) exists, compiles the code, and saves it out.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.