Tagged Questions
6
votes
1answer
130 views
Python: getting segmentation fault when using compile/eval
Code:
import ast
globalsDict = {}
fAst = ast.FunctionDef(
name="foo",
args=ast.arguments(args=[], vararg=None, kwarg=None, defaults=[]),
body=[], decorator_list=[])
exprAst = ...
6
votes
1answer
490 views
How come CPython is faster than PyPy on the two tests “slowspitfire” and “waf”?
Judging from the benchmarks posted on the PyPy Speed Center it appears as if PyPy is faster than CPython for all but two of the tests presented.
CPython is faster than PyPy on the two tests ...
5
votes
2answers
236 views
when to use an alternative Python distribution?
I have been programming in Python for a few years now and have always used CPython without thinking about it. The books and documentation I have read always refer to CPython too.
When does it make ...
5
votes
4answers
752 views
Production ready Python implementations besides CPython?
Except for CPython, which other Python implementations are currently usable for production systems?
The questions
What are the pros and cons of the various Python implementations?
I have been ...
3
votes
2answers
160 views
Can I embed CPython inside PyPy?
I'd like to write a performance-sensitive application in Python, so executing it under PyPy is a natural choice. However, a significant portion of my code depends on numpy, scipy, and scikit-learn. ...
2
votes
1answer
98 views
Line between current Python implementations and Compiled Languages [closed]
My understanding
C++ is compiled into machine code and executed.
Python is compiled into bytecode
This bytecode is then executed
What does this execution step entail and how is it different for ...
2
votes
2answers
318 views
Lowest footprint Python? CPython?
I'm new in Python. After some searching, I've found that PyPy has great performance but it comes with a price. It use too much memory.
What I'm looking for in Python is performance with smallest ...