Furkan Onder
furkanonder.bsky.social
Furkan Onder
@furkanonder.bsky.social
Python Triage Member | Focusing on CPython #LKD #Python #ArchLinux #Django #eBPF
https://github.com/furkanonder/
Reposted by Furkan Onder
Just released: Python 3.14.0 release candidate 2! 🚀🐍

🪄 We fixed a bug that required the ".pyc magic number" to be increased.

🪄 The ABI isn't changing, and wheels built for rc1 should still work.

🏆 Bonus: Early Python 3.13.7!

discuss.python.org/t/python-3-1...
#Python #CPython #Python314 #release
Python 3.14.0rc2 and 3.13.7 are go!
Not one but two expedited releases! 🎉 🎉 Python 3.14.0rc2 It’s the final 🪄 penultimate 🪄 3.14 release candidate! https://www.python.org/downloads/release/python-3140rc2/ Note: rc2 was originally plan...
discuss.python.org
August 14, 2025 at 7:41 PM
congratulations 🎉
March 31, 2025 at 11:27 AM
So cool!
February 18, 2025 at 4:00 PM
Congratulations 🎉🎉
February 6, 2025 at 12:10 PM
Thanks!
February 6, 2025 at 7:11 AM
It's awesome!
January 31, 2025 at 3:48 PM
In addition, a simple example CLI can be written to show a lot of good practice with positional argument handling, optional arguments and so on.

There could be a bonus section on the most troublesome argparse issues and solutions in CPython :)
December 31, 2024 at 5:42 AM
It can be about mistakes when using argparse.

For example, an error I see very often;
parser.add_argument(“age”)
args = parser.parse_args()
the_age = int(args.age)

instead of;

parser.add_argument(“age”, type=int")
args = parser.parse_args()
the_age = args.age
December 31, 2024 at 5:42 AM