Mark Smith Don't be afraid of metaclasses! This talk will explain how, once you've grasped basic types, classes and inheritance, Python's advanced language f... (more…)
Read more »
Today I'm starting a new series of articles about a topic that does not get a lot of coverage: how to write Python unit tests. Unlike other testing tutorials, I'm going to focus on testing techniques… (more…)
Read more »
In CPython, elements of a list are stored as pointers to the elements rather than the values of the elements themselves. This is evident from the struct that represents a list in C: // Fetched from CPython main branch. Removed comments for brevity. typede... (more…)
Read more »
Sixty video recordings from Six Feet Up’s 3rd annual 2021 Python Web Conference, the most in-depth Python conference for web developers, are now available via the #PWC2021 YouTube playlist. (more…)
Read more »
I learned Java and C at school, I learned Python by myself and it was a relief. After 8 years working and doing side projects in Python and JavaScript (mostly web dev, Django/Flask/AngularJS/Vuejs), I am not satisfied anymore by the overall experience so ... (more…)
Read more »