Alessandro Molina - Protocols and Practices enforcing in Python through bytecode and inspection

“Protocols and Practices enforcing in Python through bytecode and inspection [EuroPython 2017 - Talk - 2017-07-10 - PyCharm Room] [Rimini, Italy] Python is an interpreted development language with powerful introspection features, up to allow accesso to the byte code itself to see what the virtual machine is going to do. Reaching down to byte code or low level inspection is usually a very uncommon need and it’s usually only involved in debugging or understanding the interpreter internals, but it can be a po
Back to Top