cpython
multi-platform gui app in C(P)ython or D
I really like D(2) language and would like to use it for multi-platform GUI application, but I see that its ecosystem is not quite developed. After moving from Linux to (Free)PC-BSD, I see there is ev[详细]
2023-02-26 20:49 分类:问答Using IronPython so I can test normal Python scripts in .net
We are mostly a .NET shop and want to cover everything with the Fitness acceptance testing framework. Recently we had to write a couple of scripts for unix and we used python. Now the suggestion has b[详细]
2023-02-25 08:20 分类:问答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 r[详细]
2023-02-17 22:08 分类:问答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)[详细]
2023-02-15 17:10 分类:问答Importing C python module in Google App Engine
I am developing an application on Google app engine using Python. I want to use editdist feature of Python and for that reason I am importing editdist C python module in my开发者_StackOverflow中文版 p[详细]
2023-02-15 16:27 分类:问答Can python modules be used from Java programs using Jython without modification?
Can Python c开发者_Go百科ode be used from Java using Jython, without modifying the Python code in a way which will prevent it from working correctly in CPython?[详细]
2023-02-12 20:52 分类:问答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.[详细]
2023-02-11 09:47 分类:问答What's the format of the intermediate instruction in CPython?
For example, 0 STORE_NAME 0 (sys) is part of the instruction for import sys. Is there any documentation for this instruction format? What\'s more, is this format a standard of开发者_如何学运维 Python?[详细]
2023-02-09 10:55 分类:问答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:[详细]
2023-02-07 22:31 分类:问答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);[详细]
2023-02-07 15:04 分类:问答