The New Python 3.13 Is FINALLY Here! | Issue #22


Hi there,

Python 3.13 is officially here, packed with some seriously exciting upgrades! 🐍

The headline feature? Disabling the GIL (yep, you read that right) is a game changer for multithreaded applications. Plus, the interactive interpreter now has full color support 🎨, making debugging and experimentation even more intuitive.

But that’s just the tip of the iceberg. In this week’s video, I’ll walk you through all the major updates, including:

  • A boost to garbage collection for faster memory management ⚡
  • Improvements to package and module handling 📦
  • Some experimental (but very promising) JIT optimizations for performance 🚀

P.S. And yes, Python 3.14 is just around the corner… should we start calling it Pi-thon? 🍰

Enjoy the video and happy coding!

Cheers,

Arjan

# News

It’s Time to Stop Using Python 3.8

With the release of Python 3.13, it’s the perfect time to consider upgrading—especially if you haven’t been keeping up with recent versions.

If you’re still using Python 3.8, you could be missing out on essential improvements in performance, security, and new features. This article dives into the key reasons to move on from 3.8, outlining the risks of staying on an outdated version and the benefits of upgrading. Read the full article here.

Goodhart's Law in Software Engineering

Ever heard of Goodhart’s Law? It’s more relevant to software engineering than you think! 🤔

Goodhart’s Law states, “When a measure becomes a target, it ceases to be a good measure.” This insightful article explores how this principle plays out in software engineering, from productivity metrics to code quality—and why focusing too much on the wrong targets can lead to unintended consequences. Curious to learn more? Read the full article here.

# Community

Last month, we welcomed 242 new members to the Discord community! I couldn’t be more thrilled to have you all here. A huge thank you to everyone for your amazing contributions to the discussions so far.

If you’re new, don’t forget to pop into the #😎introduce_yourself channel and say hi! 👋 And if you haven’t joined yet, there’s no better time. Click the link below and be part of our growing community:👉 Join ArjanCodes on Discord


Do you enjoy my content on YouTube and would you like to dive in deeper? Check out my online courses below. They've helped thousands of developers take the next step in their careers.

🚀 The Mindset Online Course Series

The goal of this series is to help junior developers grow their skills to become senior developers faster.

💥 Other Courses

💡 If you’re part of a development team at a company, I offer special packages for companies that give your team the tools to consistently write high-quality code and dramatically increase your team's productivity.

🪄 Learntail

My team and I created an AI quiz generator designed to accelerate your learning, called Learntail. You can try it for free or unlock even more capabilities and features with the monthly subscription. Take a look here.

Unsubscribe | Send by ArjanCodes

Jan van Eijklaan 2-4, Bilthoven, UT 3723 BC

The Friday Loop

Every Friday, you'll get a recap of the most important and exciting Python and coding news. The Friday Loop also keeps everyone posted on new ArjanCodes courses and any limited offers coming up.

Read more from The Friday Loop

Hi there, Have you ever hesitated before hitting git merge or git rebase because… well, who actually understands Git? 🤯 Good news! In this week’s video, I walk through a real-world FastAPI project and show exactly how to merge, fast-forward, and rebase—step by step. No fluff, just practical Git skills you’ll actually use. Plus, I’m sharing some advanced Git tricks to make your workflow smoother. Happy coding and enjoy the video! Cheers, Arjan # News Build TUI Apps with Python’s Textual Ever...

Hi there, You’ve probably heard the phrase: “Coupling is bad.” But what if I told you that coupling is actually necessary? The real issue isn’t that your code has coupling—it’s that some types of coupling are worse than others. 🚨 In this week’s video, I dive into three real-world examples of bad coupling and show you how to refactor them into better designs. We’ll tackle: Global coupling – Why global variables cause headaches and how to avoid them Content coupling – When modules dig too deep...

Hi there, Ever had a function work most of the time but randomly break when you least expect it? That’s a sign your code is brittle. And brittle code means debugging nightmares. The good news? You can avoid this! In this week’s video, I break down: 🔹 Why checking types at runtime is a bad idea 🔹 The best way to handle value constraints without making a mess 🔹 Whether your function should return None or raise an exception 🔹 Why failing fast is the best approach to writing reliable Python And...