Strictly's Dani Dyer quits BBC show after gruesome injury leaves her in agony
Are Elites Meritocratic and Efficiency-Seeking? Evidence from MBA Students
Read more of this story at Slashdot.
Furious mother accuses school of 'bullying' 11-year-old daughter after she was removed from class over 'short skirt' - despite buying the largest possible size
I still have terrifying nightmares after being trapped in my own body during a medically-induced coma
Third time's the charm? SolarWinds (again) patches critical Web Help Desk RCE
SolarWinds on Tuesday released a hotfix - again - for a critical, 9.8-severity flaw in its Web Help Desk IT ticketing software that could allow a remote, unauthenticated attacker to run commands on a host machine. …
Essex neighbourhood hires its own security guards after incident in local woods
DHS Has Been Collecting US Citizens' DNA for Years
Read more of this story at Slashdot.
Kate is effortlessly elegant with lightened tresses as she joins William in Southport
The definitive Budget survival guide: EVERY tax that could be hiked - and what you must do NOW to shield your finances
The wit and Wisden of Dickie Bird: Shane Warne's 'Ball of the Century', flowers and chocolates from fearsome Australian bowlers... and why he never had a wife but was 'married to cricket'
Slow Wi-Fi? Add houseplants to the list of suspects
Houseplants could be slowing down your Wi-Fi, according to Broadband Genie, which reckons surfers can increase broadband speeds by almost 40 percent just by moving their router away from any greenery.…
Kate and William's support for Southport: Royals visit schools of tragic stabbing victims and wear friendship bracelets gifted by grieving mother in 'emotional' private meeting
Will the King banish Fergie? Photos that show just how close she and Epstein were - as scandal threatens to force Yorks out of Royal Lodge
U.S. News Rankings Are Out After a Tumultuous Year for Colleges
Read more of this story at Slashdot.
Civil servants face ban on 'nonsense' meetings about 'veganism' and 'British guilt' during working day
Priti Patel praises South East Galvanisers for supporting industry in Witham
My energy company is insisting I switch to a smart meter even though my current one is still working. Can they really force me to change? DEAN DUNHAM has the surprising answer
Python 3.13.5 Patch Release Packed with Fixes & Stability Boosts
On June 11, 2025, the Python core team released Python 3.13.5, the fifth maintenance update to the 3.13 line. This release is not about flashy new language features, instead, it addresses some pressing regressions and bugs introduced in 3.13.4. The “.5” in the version number signals that this is a corrective, expedited update rather than a feature-driven milestone.
In this article, we’ll explore what motivated 3.13.5, catalog the key fixes, review changes inherited in the 3.13 stream, and discuss whether and how you should upgrade. We’ll also peek at implications for future Python releases.
What Led to 3.13.5 (Release Context)Python 3.13 — released on October 7, 2024 — introduced several significant enhancements over 3.12, including a revamped interactive shell, experimental support for running without a Global Interpreter Lock (GIL), and preliminary JIT infrastructure.
However, after releasing 3.13.4, the maintainers discovered several serious regressions. Thus, 3.13.5 was accelerated (rather than waiting for the next regular maintenance release) to correct these before they impacted a broader user base. In discussions preceding the release, it was noted the Windows extension module build broke under certain configurations, prompting urgent action.
Because of this, 3.13.5 is a “repair” release — its focus is bug fixes and stability, not new capabilities. Nonetheless, it also inherits and stabilizes many of the improvements introduced earlier in 3.13.
Key Fixes & CorrectionsWhile numerous smaller bugs are resolved in 3.13.5, three corrections stand out as primary drivers for the expedited update:
GH-135151 — Windows extension build failureUnder certain build configurations on Windows (for the non-free-threaded build), compiling extension modules failed. This was traced to the pyconfig.h header inadvertently enabling free-threaded builds. The patch restores proper alignment of configuration macros, ensuring extension builds succeed as before.
GH-135171 — Generator expression TypeError delayIn 3.13.4, generator expressions stopped raising a TypeError early when given a non-iterable. Instead, the error was deferred to the time of first iteration. 3.13.5 restores the earlier behavior of raising the TypeError at creation time when the supplied input is not iterable. This change avoids subtler runtime surprises for developers.
Go to Full Article