3
votes
6answers
139 views
Overriding the newline generation behaviour of Python’s print statement
I have a bunch of legacy code for encoding raw emails that contains a lot of print statements such as
print >>f, "Content-Type: text/plain"
This is all well and good for e …
2
votes
2answers
138 views
CPython is bytecode interpreter?
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 …
3
votes
2answers
87 views
when to use an alternative Python distribution?
Hello,
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 CPytho …
0
votes
3answers
251 views
CPython or IronPython ?
What would you use for a brand new cross platform GUI app, CPython or IronPython ?
What about
- license / freedom
- development
- - doc
- - editors
- - tools
- libr …
1
vote
4answers
119 views
Python object has no referrers but still accessible via a weakref?
Should it be possible for gc.get_referrers(obj) to return an empty list for an object, but the object still be accessible through a weak reference?
If so how would I start trying …
1
vote
4answers
139 views
Preventing invoking C types from Python
What's the correct way to prevent invoking (creating an instance of) a C type from Python?
I've considered providing a tp_init that raises an exception, but as I understand it tha …
0
votes
3answers
95 views
Combining C and Python functions in a module
I have a C extension module, to which I would like to add some Python utility functions. Is there a recommended way of doing this?
For example:
import my_module
my_module.super_ …
4
votes
4answers
292 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 implementatio …
10
votes
3answers
419 views
Migrating from CPython to Jython
I'm considering moving my code (around 30K LOC) from CPython to Jython, so that I could have better integration with my java code.
Is there a checklist or a guide I should look a …
9
votes
6answers
478 views
What are some strategies to write python code that works in CPython, Jython and IronPython
Having tries to target two of these environments at the same time I can safely say the if you have to use a database etc. you end up having to write unique code for that environmen …
4
votes
2answers
183 views
Docs for the internals of CPython Implementation
I am currently in the process of making an embedded system port of the CPython 3.0 Python interpreter and I'm particularly interested in any references or documentation that provid …
14
votes
8answers
724 views
Python or IronPython
How does IronPython stack up to the default Windows implementation of Python from python.org? If I am learning Python, will I be learning a subtley different language with IronPyth …
5
votes
3answers
147 views
How can you programmatically tell the CPython interpreter to enter interactive mode when done?
If you invoke the cpython interpreter with the -i option, it will enter the interactive mode upon completing any commands or scripts it has been given to run. Is there a way, with …
2
votes
4answers
294 views
CPython internal structures
GAE has various limitations, one of which is size of biggest allocatable block of memory amounting to 1Mb (now 10 times more, but that doesn't change the question). The limitation …
3
votes
1answer
151 views
Why doesn’t PyRun_String evaluate bool literals?
I need to evaluate a Python expression from C++. This code seems to work:
PyObject * dict = PyDict_New();
PyObject * val = PyRun_String(expression, Py_eval_input, dict, 0);
Py_DEC …
