Python Monthly News

Python News: What's New From May 2022

by Philipp Acsany community

The first days of May 2022 were the last days of this year’s PyCon US event. Just before the PyCon conference, the Python Language Summit brought together Python core developers, triagers, and special guests. Some of those attendees were the very same people who shipped two important Python releases this month.

The third Thursday of May marked Global Accessibility Awareness Day. This day aims to raise awareness of how to build inclusive digital products.

Read on to dive into the Python news from the past month!

PyCon US Videos

Some of the biggest Python news of April 2022 took place during PyCon in Salt Lake City. If you want to catch up on the talks, then you can head over to the PyCon US YouTube channel, and start watching the video recordings of the event. Toward the end of May, the PyCon team started uploading all the videos:

Screenshot of PyCon video upload tweet
Image source

The PyCon US YouTube channel is an invaluable resource, where you can find videos on a wide range of topics, including Python Oddities Explained, Making Data Classes Work for You, and Understanding Attributes.

For the first time, the Real Python team had a booth at the PyCon conference. And if this wasn’t exciting enough, two members of the Real Python team gave talks. Geir Arne Hjelle talked about Reading PEPs in his lightning talk on the third day of the conference. As part of the Spanish track of this year’s PyCon US, Andres Pineda talked about Reactive Programming With RxPy.

Language Summit Coverage

Just before the PyCon conference, Python core developers, triagers, and special guests gathered for the Python Language Summit. During this exclusive event, the attendees discussed the future direction of the Python programming language. In May, they released an extensive recap of the 2022 Python Language Summit on the official Python Software Foundation blog.

As you’ll learn in the next section, one of the improvements of Python 3.11 is a faster CPython. But to know how to make Python faster, you need to know how slow Python currently is. At the Python Language Summit, Mark Shannon and his team shared their insights on the CPython performance improvements. Mark also encouraged the community to share code in order to get more diversity in the benchmarks used to monitor the improvements.

Python 3.11 Beta

The month of May marks a significant milestone for the Python release schedule as the first beta version of Python 3.11 is out. From now on, no new features or APIs will be added to Python 3.11. That’s great news for you if you’re maintaining a third-party Python project or if you’re planning to publish a package that supports the new features of Python 3.11:

  • PEP 657: Include Fine-Grained Error Locations in Tracebacks
  • PEP 654: Exception Groups and except*
  • PEP 673: Self Type
  • PEP 646: Variadic Generics
  • PEP 680: tomllib: Support for Parsing TOML in the Standard Library
  • PEP 675: Arbitrary Literal String Type
  • PEP 655: Marking individual TypedDict items as required or potentially-missing
  • bpo-46752: Introduce task groups to asyncio
  • Faster CPython: Making Python 3.11 up to 10-60% faster than Python 3.10

If you want to get a closer look at some of the new features that Python 3.11 brings, then check out Python 3.11 Preview: Even Better Error Messages, Python 3.11 Preview: Task and Exception Groups, and Python 3.11 Preview: TOML and tomllib.

Python 3.9.13 Final Regular Release

As specified in the release calendar in PEP 596, the thirteenth release of Python 3.9 is the final regular maintenance release. This means that from now on, Python 3.9 will only receive security fixes.

The last regular maintenance release of Python 3.9 is also a milestone for current CPython Developer in Residence Łukasz Langa. Łukasz is the release manager for Python 3.8 and 3.9, so this was his last regular release:

Screenshot of Python 3.9.13 release tweet
Image source

If you want to learn more about Łukasz, then check out Episode 82 of The Real Python Podcast. In this podcast episode, Łukasz talks about his first months as developer in residence and how he helps other Python developers to move their contributions forward.

It’s highly recommended to update the Python version that you’re using to its latest security update to minimize any vulnerabilities in your codebase. You can download Python 3.9.13 on the official Python website and read up on all changes in the release notes.

Global Accessibility Awareness Day

Since 2012, every third Thursday of May marks the annual Global Accessibility Awareness Day (GAAD). The purpose of GAAD is to raise awareness of how to build inclusive digital products. Developers around the world are encouraged to organize and participate in events that shine a light on digital accessibility:

Every user deserves a first-rate digital experience on the web. Someone with a disability must be able to experience web-based services, content and other digital products with the same successful outcome as those without disabilities. (Source)

GAAD was initiated by Joe Devon in November 2011 in his blog post CHALLENGE: Accessibility know-how needs to go mainstream with developers. NOW.:

For some people, an accessible Internet literally makes a world of difference. Although I’m a backend programmer, I’m still ashamed at how little I know. How about you? (Source)

Shortly after the blog post went live, Jennison Asuncion, an accessibility professional from Toronto, reached out to Joe Devon. Jennison and Joe joined forces and launched the first Global Accessibility Awareness Day.

Check out the GAAD website’s events page to get an impression of how the community has celebrated Global Awareness Day over the years. This year, for example, the GitHub blog highlighted what the company is doing to make its products more inclusive.

Of course, making the Web more accessible can’t be confined to one day! For example, Kent Connects is offering a free webinar series called Summer of Accessibility. To sign up for sessions, check out their events page.

What’s Next for Python

So, what’s your favorite Python news story from May? Did we miss anything notable? Are you excited about the recent Python releases? Have you attended a Global Accessibility Awareness Day event? Or do you have your own notes about accessibility that you want to share? Let us know in the comments!

Happy Pythoning!

🐍 Python Tricks 💌

Get a short & sweet Python Trick delivered to your inbox every couple of days. No spam ever. Unsubscribe any time. Curated by the Real Python team.

Python Tricks Dictionary Merge

About Philipp Acsany

Philipp Acsany Philipp Acsany

Philipp is a Berlin-based software engineer with a graphic design background and a passion for full-stack web development.

» More about Philipp

Each tutorial at Real Python is created by a team of developers so that it meets our high quality standards. The team members who worked on this tutorial are:

Master Real-World Python Skills With Unlimited Access to Real Python

Locked learning resources

Join us and get access to thousands of tutorials, hands-on video courses, and a community of expert Pythonistas:

Level Up Your Python Skills »

Master Real-World Python Skills
With Unlimited Access to Real Python

Locked learning resources

Join us and get access to thousands of tutorials, hands-on video courses, and a community of expert Pythonistas:

Level Up Your Python Skills »

What Do You Think?

Rate this article:

What’s your #1 takeaway or favorite thing you learned? How are you going to put your newfound skills to use? Leave a comment below and let us know.

Commenting Tips: The most useful comments are those written with the goal of learning from or helping out other students. Get tips for asking good questions and get answers to common questions in our support portal.


Looking for a real-time conversation? Visit the Real Python Community Chat or join the next “Office Hours” Live Q&A Session. Happy Pythoning!

Keep Learning

Related Tutorial Categories: community