Search code examples
Where/how does the name `posix` get resolved by an import statement?...


pythonlinuxpython-importcpython

Read More
Python source code What is the point of using for(;;) instead of while?...


ccpython

Read More
why python dict update insanely slow?...


pythonperformancedictionarycpythonpython-internals

Read More
How does the CPython Interpreter handle OOP...


pythoncoopcpython

Read More
Using NumPy and Cpython with Jython...


javapythonnumpyjythoncpython

Read More
Is a vulnerability identified in Python considered a vulnerability in Jython?...


pythonsecurityjythoncpython

Read More
Is there anyway to clear python bytecode cache?...


pythoncpython

Read More
Is this a circular definition in cpython?...


pythoncpython

Read More
Are `.__mro__` and `.mro()` a CPython implementation details?...


pythoncpythonmethod-resolution-order

Read More
Shall strings pointed by paramaters to PySys_SetArgvEx() be kept in memory until Py_Finalize()?...


pythoncpython-c-apicpythonpython-embedding

Read More
Why syntax error messages for some built-in functions are different?...


pythonpython-3.xpython-3.5cpython

Read More
Is there a point to setting __all__ and then using leading underscores anyway?...


pythoncpython

Read More
Why is 'new_file += line + string' so much faster than 'new_file = new_file + line + str...


pythonstringstring-concatenationcpythonpython-internals

Read More
Python name mangling on global variable with __...


pythoncpythonname-mangling

Read More
'{0}'.format() is faster than str() and '{}'.format() using IPython %timeit and othe...


pythoncpython

Read More
undefined reference to `_imp__PyExc_TypeError' with MinGW...


pythonpython-2.7gccmingwcpython

Read More
setattr and assignment are not equivalent for private attributes...


pythonpython-3.xattributescpythonsetattr

Read More
Accessing the c pointer to structure in python...


pythonembeddingpython-c-apicpythonc-api

Read More
Difference in variable allocation in python interpreter and python program...


pythonpython-2.7python-3.xcpython

Read More
Is it possible to write an automatic garbage collector for one language in another language?...


pythoncgarbage-collectioncpython

Read More
Alternative to python-config callable from within Python...


pythonintrospectioncpythoncompiler-flagspython-c-extension

Read More
Custom PyObject by inheritance in C++...


pythonc++templatescpythonpyobject

Read More
The most efficient way to iterate over a list of elements. Python 2.7...


pythonlistpython-2.7loopscpython

Read More
Why Do I have to worry about Thread Safety in CPython?...


pythonmultithreadingthread-safetycpythongil

Read More
Is a python dict's len() atomic with respect to the GIL?...


pythonpython-2.7cpython

Read More
Why is it slower to iterate over a small string than a small list?...


pythonperformancecpythontimeitpython-internals

Read More
In what order should Python’s list.__contains__ invoke __eq__?...


pythoncpythonpypy

Read More
CPython memory management...


pythoncmemory-managementcpython

Read More
How to raise an exception in the init method for a CPython module...


pythonpython-2.7cpythonpython-internals

Read More
Python list of mutable objects without duplicates...


pythontypescpython

Read More
BackNext