You are here |
ntietz.com | ||
| | | |
akaptur.github.com
|
|
| | | | Last week at Hacker School I did a quick presentation on python bytecode and the dis module. The disassembler is a very powerful tool with a gentle ... | |
| | | |
rcoh.me
|
|
| | | | As I was learning to program, Python lists seemed totally magical to me. I imagined them as being implemented by some sort of magical datastructure that was part linked-list, part array that was perfect for everything. As I grew as an engineer, it occurred that this was unlikely. I guessed (correctly) that rather than some sort of magical implementation, it was just backed by a resizable array. I decided to read the code and find out. | |
| | | |
www.caichinger.com
|
|
| | | | A deep dive into Python reference counting and the GIL. | |
| | | |
manybutfinite.com
|
|
| | Earlier we've explored the anatomy of a program in memory, the landscape of how our programs run in a computer. Now we turn to the call stack, the work horse in most programming languages and virtual |