Search code examples
Python 3.4 multiprocessing Queue faster than Pipe, unexpected...

pythonwindowssocketspython-3.xpython-internals

Read More
Is list comprehension implemented via map and lambda function?...

pythonlist-comprehensionpython-internals

Read More
taking square using "value**2" results causes an overflow while "value*value" is...

pythonpython-internalspython-hypothesis

Read More
Why are Python's arrays slow?...

pythonarraysperformanceboxingpython-internals

Read More
How can I access the weakref object of the class itself through the class?...

pythonclassweak-referencespython-internalspython-datamodel

Read More
Hash of integers in python...

pythonhashpython-internals

Read More
python is operator behaviour with string...

pythonpython-3.xidentitypython-internals

Read More
Why does a class' body get executed at definition time?...

pythonclasspython-internals

Read More
What is Python 3 `str.__getitem__` computional complexity?...

python-3.xpython-internals

Read More
How does Python distinguish explicitly passed None as argument in built-ins...

pythonbuilt-inpython-internals

Read More
Why do GeneratorExit and StopIteration have different base classes?...

pythonexceptionpython-internals

Read More
What is the global interpreter lock (GIL) in CPython?...

pythonpython-internalsgil

Read More
Memory usage of Python base types (particulary int and float)...

pythonmemory-managementpython-internals

Read More
Native array.frombytes() (not numpy!) mysterious behavior...

pythonarrayspython-internals

Read More
What exactly is contained within a obj.__closure__?...

pythonclosurespython-internals

Read More
How does CPython implement os.environ?...

pythonpython-3.xwindowspython-internals

Read More
Does Python not reuse memory here? What does tracemalloc's output mean?...

pythonmemorycpythonpython-internalstracemalloc

Read More
Why python property() function is assigned to a class variable and not an instance variable?...

pythonclassooppropertiespython-internals

Read More
Can someone explain how the source code of staticmethod works in python...

pythondecoratorstatic-methodspython-decoratorspython-internals

Read More
Python source code for built-in "in" operator...

pythoncstringcpythonpython-internals

Read More
Can we make 1 == 2 true?...

pythoncpythonpython-internals

Read More
Why is memory not freed in this case?...

pythonpython-3.xcpythonpython-internals

Read More
Why does the float object behave differently with the "is" operator?...

pythonimmutabilitycpythonpython-internals

Read More
Why is code using intermediate variables faster than code without?...

pythonpython-3.xcpythonpython-internals

Read More
How is __dir__ implemented exactly, and how should I know it?...

pythonpython-internals

Read More
Why is Python's 'len' function faster than the __len__ method?...

pythonpython-internals

Read More
Python threads difference for 3.10 and others...

pythonmultithreadingpython-multithreadingpython-internals

Read More
Why close a cursor for Sqlite3 in Python...

pythonsqlitepython-internalsdatabase-cursorpython-db-api

Read More
How does Python interpreter actually interpret a program?...

pythoninterpreterpython-internals

Read More
How can you slice with string keys instead of integers on a python OrderedDict?...

pythonpython-2.7dictionarypython-internalsordereddictionary

Read More
BackNext