Tagged Questions
The cpython tag has no wiki summary.
21
votes
3answers
262 views
What happens behind the scenes when python adds small ints?
I was fiddling around with id recently and realized that (c?)Python does something quite sensible: it ensures that small ints always have the same id.
>>> a, b, c, d, e = 1, 2, 3, 4, 5
...
19
votes
8answers
2k 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 IronPython, and what ...
16
votes
2answers
369 views
Is a variable swap guaranteed to be atomic in python?
With reference to the following link: http://docs.python.org/faq/library.html#what-kinds-of-global-value-mutation-are-thread-safe
I wanted to know if the following:
(x, y) = (y, x)
will be ...
15
votes
6answers
2k 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 at, to help my with ...
12
votes
4answers
460 views
How is CPython's set() implemented?
I've seen people say that set objects in python have O(1) membership-checking. How are they implemented internally to allow this? What sort of data structure does it use? What other implications does ...
12
votes
6answers
552 views
Can I treat IronPython as a Pythonic replacement to C#?
I do understand that this topic has been covered in some way at StackOverflow but I'm still not able to figure out the exact answer: can I treat IronPython as a Pythonic replacement to C#?
I use ...
11
votes
6answers
872 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 environment. Have you got a ...
9
votes
2answers
105 views
Docstrings in C extensions to Python?
When creating a C extension to Python, is it possible to be able to somehow write comments that are exposed as docstrings to users of the extension?
8
votes
1answer
68 views
Detect argument passing convention of a C library function
With pure Python functions you can pass arguments either by order (e.g. foo(1, 2, 3)) or by name (e.g. foo(a=1, c=3, b=2)).
Functions defined in C modules can use either convention. You cannot say ...
7
votes
4answers
320 views
Why does id({}) == id({}) and id([]) == id([]) in CPython?
Why does CPython (no clue about other Python implementations) have the following behavior?
tuple1 = ()
tuple2 = () ...
7
votes
8answers
2k views
CPython vs. Jython vs. IronPython for cross-platform GUI development
I'm thinking of making some kind of experimental IDE for digital hardware design. So I can't decide witch platform to choose.
I'm going to have text-editor with syntax highlighting, some vector ...
6
votes
1answer
129 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 = ...
5
votes
1answer
488 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
1answer
160 views
Why does refs increase 2 for every new object in Python?
It is a little weird to me that the refs number in the interactive environment increases 2 after a new object is defined. I created only one object, isn't it?
>>> v
Traceback (most recent ...
5
votes
2answers
354 views
OpenCV: memory leak with Python interface but not in the C version
I am asking here because I haven't gotten any help from the OpenCV developers so far. I reduced the problem to a very simple test case so probably anyone with some background with CPython could help ...
5
votes
3answers
244 views
Why is the destructor called when the CPython garbage collector is disabled?
I'm trying to understand the internals of the CPython garbage collector, specifically when the destructor is called. So far, the behavior is intuitive, but the following case trips me up:
Disable ...
5
votes
6answers
2k 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 emails, but we're now ...
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 ...
5
votes
3answers
288 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, within a program to get ...
5
votes
2answers
490 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 provides details about the ...
4
votes
2answers
76 views
Comparing None with built-in types using arithmetic operators?
Python 2.7.2 (default, Jun 12 2011, 14:24:46) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> None > 0
False
>>> ...
4
votes
1answer
31 views
How to deactivate method cache in CPython 2.7.2?
I'm trying to implement my own kind method cache. For that, first I want to disable the existing method cache implemented in CPython 2.7.2, since I would also like to benchmark CPython without this ...
4
votes
4answers
162 views
string identity comparison in CPython
I have recently discovered a potential bug in a production system where two strings were compared using the identity operator, eg:
if val[2] is not 's':
I imagine this will however often work ...
4
votes
1answer
155 views
Is there an implementation of _rational_ interval arithmetic in Python?
Is there an implementation of rational interval arithmetic in Python? This uses floats, not rationals.
If not, is there any implementation of rationals in Python that includes ±∞ ?
4
votes
3answers
415 views
Is IronPython usable as a replacement for CPython?
Has IronPython gotten to a point where you can just drop it in as a replacement for CPython?
To clarify: I mean can IronPython run applications originally written for CPython (no .NET involved, of ...
3
votes
2answers
86 views
Performance impact of using long vs. int in Python
I need to manipulate large numbers in Python that fit into 64 bits. Currently, my code is running on a 64-bit platform but there is small but distinct possibility that it will have to run on a 32-bit ...
3
votes
1answer
45 views
PyFile_Type replaced by ..?
I'm tyring to compile Yenc for Python 3.2. I noticed that gcc complained about a non-declared function PyString_Type, so I replaced it with its replacement PyBytes_Type as according to the ...
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. ...
3
votes
2answers
122 views
Ironpython: Function works in CPython, mysterious null pointer exception in IronPython
I'm trying to do something that seems very simple, and falls within the range of standard python. The following function takes a collection of sets, and returns all of the items that are contained in ...
3
votes
1answer
222 views
Twisted getPage(): process memory grow when requesting lot of pages
I am writing a script for contstant (each 30-120 sec) grabbing of information quering a large set of URLs (Icecast/Shoutcast servers status pages), about 500 urls. It works fine, but the python ...
3
votes
5answers
132 views
Is there anything static about python function / method invocations?
In asking a question about reflection I asked:
Nice answer. But there is a difference between saying myobject.foo() and x = getattr(myobject, "foo"); x();. Even if it is only cosmetic. In the ...
3
votes
1answer
174 views
What does cpython do to help detect object cycles(reference counting)?
From what I've read about cpython it seems like it does reference counting + something extra to detect/free objects pointing to each other.(Correct me if I'm wrong). Could someone explain the ...
3
votes
3answers
1k views
Using NumPy and Cpython with Jython
I must use a commercial Java library, and would like to do it from Python. Jython is robust and I am fine with it being a few dot releases behind. However, I would like to use NumPy as well, which ...
3
votes
2answers
166 views
Accessing xrange internal structure
I'm trying to use ctypes to extract data from internal python structures. Namely, I'm trying to read the 4 fields in an xrange:
typedef struct {
PyObject_HEAD
long start;
long ...
3
votes
1answer
591 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_DECREF(dict);
...
2
votes
1answer
55 views
Is it possible to run PowerShell and Active Directory commands from cPython?
I have 2 questions about cPython (but not IronPython):
Is it possible to run PowerShell commands from cPython?
Is it possible to run Active Directory commands from cPython?
If it's not natively ...
2
votes
2answers
78 views
Elixir for Python 3?
I have a problem installing Elixir with Python 3 although I have installed SqlAlchemy 0.7.3 successfully? I've tried google-ing but I am loosing hope. Is there really a version of Elixir for Python 3? ...
2
votes
0answers
99 views
CPython sources - how to build a STATIC python26.lib?
I'm trying to compile my hello.pyx file to an exe using Cython.
First step was to compile the hello.pyx into a hello.cpp file using command "cython --cplus --embed hello.pyx". Embed option means to ...
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
3answers
153 views
When embedding CPython in Java, why does this hang?
I'm embedding CPython into a JVM using Jepp, but when I run
import numpy; numpy.finfo(float)
the process hangs. gdb says something's blocking a semaphore/lock acquisition, and the stack trace ...
2
votes
1answer
106 views
Python for Flash Player
Would it be technically possible to embed Python into a Flex/AIR application by compiling CPython code using Alchemy?
(I'm guessing the project should be called Flython.)
2
votes
3answers
90 views
is it possible to access an object via memory adress?
In CPython, the builtin-function id(x) returns the memory adress of x.
Is it possible to reverse this ?
Something like object_by_memoryadress(id(x)) == x.
Update: The reason I need this is, because ...
2
votes
1answer
159 views
Stackless Python development using Python Tools for Visual Studio
Does the Python Tools for Visual Studio Beta, which includes support for CPython, allow you to develop in Stackless Python?
If so, could you expand your answers to include any of the steps necessary ...
2
votes
2answers
315 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 ...
2
votes
2answers
149 views
Why Is My Stackless Executable So Much Smaller
I wrote a few games for a competition in Stackless Python and needed to create an executable. Accidentally though, I used CPython 2.6 instead of using Stackless Python 2.5 to build the executable. I ...
2
votes
1answer
131 views
Which performance have cPython sets in comparison to lists?
I have just found these performance notes for cPython lists:
Time needed for python lists to ....
... get or set an individual item: O(1)
... append an item to the list: worst O(n^2), but usually ...
2
votes
2answers
114 views
python extension module initialisation - multiple files
Having created a C library consisting of many source and header files, I now need to wrap it with a Python layer, so I can "import" it.
I have implemented the static method to be called from Python, ...
2
votes
3answers
144 views
Where is the __builtin__ module in CPython
I want to get the path and source code of the __builtin__ module, where can I get it?
2
votes
1answer
135 views
What on earth…? File permissions from files created by Python C code
If I have the following C code:
int main(int argc, char **arg)
{
int x = open("testfilefromc", O_RDWR | O_CREAT);
return 0;
}
which when I compile and run not unreasonably creates this:
...