CPython is the default, most-widely used implementation of the Python programming language. It is written in C.
0
votes
1answer
46 views
Python: where is the code for os.mkdir?
I've been looking through the code of the os module (just to be clear, I'm looking at the file /usr/lib/python2.7/os.py), and I've been trying to find the code for the mkdir function. From what I ...
15
votes
1answer
129 views
Why doesn't Python always require spaces around keywords?
Why can spaces sometimes be omitted before and after key words? For example, why is the expression 2if-1e1else 1 valid?
Seems to work in both CPython 2.7 and 3.3:
$ python2
Python 2.7.3 (default, ...
1
vote
1answer
61 views
Getting argument list in a Boost:Python function
In CPython we can get the argument list of a function by following methods.
function name is 'aMethod'
import inspect
inspect.getargspec(aMethod)
or
aMethod.func_code.co_varnames
How can I ...
5
votes
1answer
85 views
Python: GIL context - switching
So, I generally have a pretty good understanding of how the Global Interpreter Lock (GIL) in Python works. Essentially, while the interpreter is running, one thread holds the GIL for N ticks (where N ...
0
votes
1answer
37 views
Using .pyd library in Jython
Actually i'm about to start a project, in the company we are using java as a main technology in owr web app server (IBM WebSpher), but now we need to integrate existing technology with a new product ...
0
votes
1answer
22 views
Sequence of commands sent to a virtual machine using Vix fails sometimes
I made a function called listProcesses which calls the following Vix commands, in this order:
VixHost_Connect
VixHost_OpenVM
VixVM_LoginInGuest
VixVM_ListProcessesInGuest
VixVM_LogoutFromGuest
...
1
vote
0answers
37 views
Forcing modules to run in PyPy from a CPython script (run PyPy on part of the code)?
Is there a way to import modules from a CPython script, but run them in PyPy?
The problem is that I have a code that uses lots of SciPy (and NumPy), but there are parts of the code that could be ...
0
votes
1answer
28 views
Purpose and usage of PyModule_New
At face value, the C-API function PyModule_New and PyModule_NewObject obviously creates a new module object.
The official Python Documentation provides the following explanation for ...
0
votes
1answer
62 views
python 33 pickle class instance in dict
the following code
import pickle
class Member:
global members
try:
with open('member dict.txt','rb') as f:
members=pickle.load(f)
except:
members={}
def ...
0
votes
1answer
33 views
What's the proper way to clean up static python object references in a CPython extension module?
The CPython headers define a macro to declare a method that is run to initialize your module on import: PyMODINIT_FUNC
My initializer creates references to other python objects, what is the best way ...
3
votes
1answer
70 views
type's behavior with weakref - can't understand
I always believed that in Python interpreter values of x.__class__ and type(x) are equivalent. But if we do the following (in Python 2.7, 3.3 and also PyPy 2.0b1):
>>> import weakref
...
1
vote
1answer
38 views
Adding IPC support to existing Python applications [closed]
I'm starting with Python, I'm trying to understand how Cpython works with both the usual "Python console" from the OS shell and the Python APIs provided by some applications, now I need some kind of ...
1
vote
1answer
30 views
What kind of lookup is performed by list.index(value)?
What does python do behind the scenes when I call:
very_big_list.index(value)
On a list of strings?
Is it more efficient than this equivalent dictionary lookup?
d = {'hello':1, 'dog':2, 'cat':3, ...
5
votes
2answers
162 views
Is it REALLY true that Python code runs faster in a function?
I saw a comment that lead me to the question Why does Python code run faster in a function?.
I got to thinking, and figured I would try it myself using the timeit library, however I got very ...
1
vote
1answer
114 views
Using Py_buffer and PyMemoryView_FromBuffer with different itemsizes
This question is related to a previous question I asked. Namely this one if anyone is interested. Basically, what I want to do is to expose a C array to Python using a Py_buffer wrapped in a ...
1
vote
2answers
138 views
How can I import a .so module in PyPy?
I am green to PyPy, and I use PyPy1.9 to interpret my Python code.
As you know, the CPython interpreter can import a module packaged in a .so file, which is compiled from C/C++ codes.
But PyPy1.9 ...
2
votes
1answer
76 views
Calling a Python function from a C thread, with a mutable C array
I'm in the process of creating a Python extension for a small audio library written in C++. When opening an audio stream, a callback function is passed as a parameter (among other parameters of ...
1
vote
1answer
258 views
Obfuscating python bytecode through interpreter mutation
Actually, Dropbox made it very well, they were able to secure their desktop application made in python; I researched this a lot, but no good solution better than obfuscation, which is not very secure ...
4
votes
1answer
77 views
Does anyone actually know how the order of a set is decided in Python? [duplicate]
Is it somehow related to the number 42, like all the great mysteries of the universe?
There does seem to be some consistency in that calling set() on a string always seems to resolve to the same ...
1
vote
1answer
58 views
Does multiprocessing module fix CPython multi-core usage?
In CPython, threading module doesn't utilise multiple cores because it uses global interpreter lock. However I recently found multiprocessing module from standard library which is said to sidestep the ...
2
votes
2answers
67 views
How can I tell which python implementation I'm using?
Python has a few different implementations: CPython, Jython, PyPy, etc. I want to programmatically determine which implementation my code is running on. How can I do that?
To be specific, write a ...
1
vote
1answer
40 views
Understanding PyDict_Check behaviour
I've been playing around with the Python C API for a while. I like it a lot but today I hit a roadblock. I have a Python extension that has a function which expects one or two dictionaries as ...
0
votes
1answer
17 views
CPython: Why does lower (string method) create new memory locations?
What's going on here?:
>>> a, b, c = ("TEST", "test", "TEST".lower())
>>> map(id, [a,b,c])
[140341845003072, 140341845003216, 140341845003264]
>>> map(str, [a,b,c])
...
0
votes
2answers
54 views
Threaded python and C binding synchronization
I am working on implementing Python bindings for a real-time C library of mine. I have read that threads in Python are not actual threads and that they don't really run in parallel (because of the ...
3
votes
1answer
108 views
Python-C Api wrapper in Objective-C crashes with call to __getattr__ when passed a Python Object
I'm in the process of writing a lightweight interface in Objective-C that is capable of executing python scripts and passing data back and forth between Objective-C and Python. I've looked into ...
2
votes
1answer
81 views
Python: pickle derived str object
Running:
import pickle
class Foo(str):
def __new__(cls, s, bar):
self = super(Foo, cls).__new__(cls, s)
self.bar = bar
return self
with open('foo.pkl', 'wb') as w:
x ...
2
votes
1answer
83 views
Python: __slots__ and its usage of descriptors
class Foo(object):
__slots__ = ('a',)
class Bar(Foo):
@property
def a(self):
return super(Bar, self).a
super(Bar, Bar()).a = 4
If I'm using this code, this doesn't work:
...
4
votes
1answer
81 views
How to set a breakpoint on a python function in gdb
I sometime use gdb to debug python scripts (CPython of course). It is useful typically to debug core dumps (and when it involves c extension modules).
A basic question is how to set breakpoint on a ...
0
votes
1answer
80 views
Segfault at Py_Finalize (python 2.5) in single threaded C program
In this following hello world C program, I am both extending and embedding Python.
spam.c:
#include <Python.h>
static PyObject *
spam_echo(PyObject *self, PyObject *args) {
const char ...
6
votes
2answers
145 views
How is tuple implemented in CPython?
I've been trying to learn how CPython is implemented under the scenes. It's great that Python is high level, but I don't like treating it like a black box.
With that in mind, how are tuples ...
0
votes
1answer
74 views
Wrapping a C function that expect C dynamic callbacks
I am trying to write a wrapper around libedit (a BSD alternative to readline with a slightly different API) and there is a way to add a named function to the C API.
For example in C:
static unsigned ...
9
votes
2answers
399 views
Using libspotify .dll/.lib files in MinGW32 compiling pySpotify
Using MinGW32 on a Windows PC I am trying to compile pySpotify. The first error was that libspotify/api.h was missing. I fixed this by copying the appropriate folder from libspotify into ...
1
vote
1answer
49 views
Where in the Cpython code are lists implemented [closed]
I am trying to find where data types such as list and tuples are implemented. I tried looking through the CPython code but could not find it.
1
vote
1answer
54 views
Is it possible to change shared library references in a shared object file?
I have a .so file which contains a reference to /Library/Frameworks/Python.framework/Versions/2.7/Python (I can see this path hard-coded in plaintext within the .so file). I don't have access to the ...
22
votes
3answers
561 views
can you recover from reassigning __builtins__ in python?
If I open up interactive mode and type:
__builtins__ = 0 # breaks everything
have I completely broken the session? If so, what is going on behind the scenes to assign __builtins__ to the builtin ...
3
votes
2answers
279 views
PyPy cpyext: any documentation? how to use? PyThreadState_Get error?
I have read (here) that PyPy has support for CPython extension modules via cpyext.
I haven't found any cpyext documentation. Is there any?
How do I use it?
From the source code (e.g. here), I ...
3
votes
2answers
82 views
Does PIL resize() hold the GIL?
Example:
image = Image.open('foo.png')
# releases the GIL?
resized = image.resize((800, 600), Image.ANTIALIAS)
# reacquires the GIL?
Obviously the variable assignment needs to hold the GIL, but ...
1
vote
0answers
186 views
Fast and scalable RPC between C# and CPython
I need some feedback on C# - cPython integration for scientific application.
The scenario is the following: C# for data acquisition and visualization - CPython for data manipulation using several ...
0
votes
1answer
65 views
PyObject_HasAttrString segfaults when attribute doesn't exist, doesn't when exists
I'm encountering a very strange problem with the Python C API. I have a globally scoped struct 'dcon' that contains a PyObject 'device' member.
static status_t get_mac_addr(uint8_t const ** addr,
...
0
votes
1answer
156 views
CPython and PyPy on Mac OS X 10.6
I'm planning to install PyPy on my system. I already have CPython implementation existing on my system. Will installing PyPy affect this existing system implementation in any way ?
In nutshell, I ...
1
vote
2answers
61 views
Where is the implementation of cpython's list type?
I'd like to know where the __setitem__ and __getitem__code of pythons list type is defined. I know the list is implemented in C, but I can't find the code implementing the indexing and slicing ...
6
votes
2answers
70 views
Trying to get started tracing Python features and behavior through the source code
I want to be able to investigate and trace through the Python source code to see how things work under the hood, and to resolve doubts about features that are not explicitly documented in the ...
5
votes
2answers
294 views
Print to standard printer from Python?
Is there a reasonably standard and cross platform way to print text (or even PS/PDF) to the system defined printer?
Assuming CPython here, not something clever like using Jython and the Java printing ...
0
votes
0answers
32 views
Does numpy-config exist?
I've been writing a lot of legacy C++ / FORTRAN code into python extensions using make, where I rely on python-config for installation-specific settings. Ideally I'd like the C++ code to interact with ...
2
votes
1answer
195 views
How to use Py_AddPendingCall
I have an embedded Python program which runs in a thread in C.
When the Python interpreter switches thread context (yielding control to another thread), I'd like to be notified so I can perform ...
2
votes
1answer
114 views
Calling Python code from a C thread
I'm very confused as to how exactly I can ensure thread-safety when calling Python code from a C (or C++) thread.
The Python documentation seems to be saying that the usual idiom to do so is:
...
3
votes
1answer
90 views
PyPy: get raw access to string
In CPython, this works:
import ctypes
ctypes.pythonapi.PyString_AsString.argtypes = (ctypes.c_void_p,)
ctypes.pythonapi.PyString_AsString.restype = ctypes.POINTER(ctypes.c_char)
s = "abc"
cs = ...
10
votes
1answer
183 views
C Python: Running Python code within a context
The Python C API function PyEval_EvalCode let's you execute compiled Python code. I want to execute a block of Python code as if it were executing within the scope of a function, so that it has its ...
5
votes
1answer
216 views
Python source code for built-in “in” operator
I am trying to find the implementation of the built-in in operator in the (C) Python source code. I have searched in the built-in functions source code, bltinmodule.c, but cannot find the ...
0
votes
2answers
89 views
Is there a way to run cpython on a diffident thread without risking a crash?
I have a program that runs lots of urllib requests IN AN INFINITE LOOP, which makes my program really slow, so I tried putting them as threads. Urllib uses cpython deep down in the socket module, so ...