Compilation Cpython Python Python Importlib How To Edit Cpython's Lib/importlib/_bootstrap.py? May 26, 2024 Post a Comment I would like to play with CPython's Lib/importlib/_bootstrap.py file, but my edits in my curren… Read more How To Edit Cpython's Lib/importlib/_bootstrap.py?
Cpython Hash Python Python Internals Set Why Does Tuple(set([1,"a","b","c","z","f"])) == Tuple(set(["a","b","c","z","f",1])) 85% Of The Time With Hash Randomization Enabled? May 11, 2024 Post a Comment Given Zero Piraeus' answer to another question, we have that x = tuple(set([1, 'a', … Read more Why Does Tuple(set([1,"a","b","c","z","f"])) == Tuple(set(["a","b","c","z","f",1])) 85% Of The Time With Hash Randomization Enabled?
Cpython Numpy Performance Python Python 3.x Storing Python Objects In A Python List Vs. A Fixed-length Numpy Array April 16, 2024 Post a Comment In doing some bioinformatics work, I've been pondering the ramifications of storing object inst… Read more Storing Python Objects In A Python List Vs. A Fixed-length Numpy Array
Cpython Dynamic Loading Python Python Import Python Internals How Does Module Loading Work In Cpython? February 25, 2024 Post a Comment How does module loading work in CPython under the hood? Especially, how does the dynamic loading of… Read more How Does Module Loading Work In Cpython?
Cpython Gil Multithreading Python Python Threads Are Not Improving Speed February 09, 2024 Post a Comment In order to speed up a certain list processing logic, I wrote a decorator that would 1) intercept i… Read more Python Threads Are Not Improving Speed
Bytecode Cpython Disassembly Python Reverse Engineering In C Python, Accessing The Bytecode Evaluation Stack January 20, 2024 Post a Comment Given a C Python frame pointer, how do I look at arbitrary evaluation stack entries? (Some specific… Read more In C Python, Accessing The Bytecode Evaluation Stack
Cpython Python Python 2.7 Python: Where Is The Code For Os.mkdir? January 18, 2024 Post a Comment I've been looking through the code of the os module (just to be clear, I'm looking at the f… Read more Python: Where Is The Code For Os.mkdir?
Cpython Performance Python Python Internals Timeit Why Is It Slower To Iterate Over A Small String Than A Small List? December 22, 2023 Post a Comment I was playing around with timeit and noticed that doing a simple list comprehension over a small st… Read more Why Is It Slower To Iterate Over A Small String Than A Small List?