Are you guys editing bitbucket-pipelines.yml manually or creating it programmatically?
While I can write beautiful python code my bitbucket-pipelines.yml looks like carbage. It hurts.
I post about
🐍 #python
📊 #dataanalytics
👨🔬 #datascience
👨🏻💻 #dev #developers
| GitHub | https://github.com/fohrloop |
Are you guys editing bitbucket-pipelines.yml manually or creating it programmatically?
While I can write beautiful python code my bitbucket-pipelines.yml looks like carbage. It hurts.
The PEP8 Song:
Wrote an essay to follow up on my AI features == Waste of Time (usually) post from yesterday. Let me know what you think #python
Great CPython bug: "Incrementing class variable about 2**32 times causes the Python 3.12.1 interpreter to crash"
https://github.com/python/cpython/issues/113462
(background: classes now have a version number to make it possible to cache method lookups. the version is incremented if the class is mutated. if the version number overflows, weird stuff happens.)
Crash report What happened? The below example stores an integer counter as a class variable C.counter. Incrementing the counter using C.counter += 1 between 2^32 - 2^24 and 2^32 times makes the Pyt...