python

Back Open Paginator
14.02.2026 19:34
hugovk (@hugovk@mastodon.social)

The release overview table at python.org/downloads/ is now generated from the PEPs API (peps.python.org/api/) instead of being hardcoded.

This and some of the earlier stuff means three more manual steps have been removed from the release process, PEP 101!





Show Original Post


14.02.2026 19:25
hugovk (@hugovk@mastodon.social)

We dropped support for Internet Explorer!

This was a +92 -10,723 diff!

There had been support down to IE6...

github.com/python/pythondotorg




Show Original Post


14.02.2026 19:21
hugovk (@hugovk@mastodon.social)

I picked up some accessibility tips after watching @vossisboss's talk at @pyladiescon, and improved the contrast ratio of H2 headers (github.com/python/pythondotorg) and wrapped the logo in a div instead of an H1 because we already use an H1 for the title, and you should maintain a hierarchy of headers (github.com/python/pythondotorg).

mastodon.social/@hugovk/115678

#Python #accessibility




Show Original Post


14.02.2026 19:16
hugovk (@hugovk@mastodon.social)

Some more python.org updates:

We show a chart of supported Python versions at devguide.python.org/versions/ but that site is for developing CPython. So now it's also at python.org/downloads/

The "superseded by" had better styling, and added an EOL warning for older ones.

python.org/downloads/release/p

When creating a new release in the admin interface, prefill the release notes link to something like docs.python.org/3.15/whatsnew/ for pre-releases and docs.python.org/release/3.14.4 for full releases.





Show Original Post


14.02.2026 18:45
247CodeGirl (@247CodeGirl@mastodon.social)

Season 1 Lesson 1 Part 9 - Your First Steps - Python Variables - Creating Variables





Show Original Post


14.02.2026 18:30
pytexas (@pytexas@fosstodon.org)

The next "Guess Who" speaker revealed for our 20th anniversary! 🎉

Charlie will be sharing how ditching the #python GIL will yield extra performance, catch bugs in automated workflows, and more!

Grab your ticket TODAY: pytexas.org/2026 💛

#PyTexasConference2026





Show Original Post


14.02.2026 18:13
TechKeysX (@TechKeysX@mastodon.social)

Three Basic Methods to add items in Lists in Python - S1 EP05 P1 -





Show Original Post


14.02.2026 17:55
newbyte (@newbyte@mastodon.nu)

Is there any way linter/type checker for #Python that can find expressions that never will evaluate to anything other than False based on the type information? E.g. checking if a variable of the type `int` exists within a list of the type `list[str]`? I do use #mypy but it doesn't seem to catch this.




Show Original Post


14.02.2026 17:30
Reuven (@Reuven@fosstodon.org)

Make a #Python class sortable with __lt__ and __eq__:

class C:
def __init__(self, x):
self.x = x
def __lt__(self, o):
return self.x < o.x
def __eq__(self, o):
return self.x == o.x

sorted([C(3), C(1), C(2)]) # orders by x: 1, 2, 3





Show Original Post


14.02.2026 17:19
rzeta0 (@rzeta0@mathstodon.xyz)

Feel free to tell realpython whether you want to see them create content on using AI to code.

I told them no:

(i) unethical training process
(ii) less maintainable code
(iii) deskilling of developers

survey.realpython.com/ai-coding

#python




Show Original Post


14.02.2026 17:05
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

Harness is hiring Staff Software Engineer (AppSec)

🔧 #java #python #api #graphql #grpc #rest #kafka #kubernetes #mongodb
🌎 Bengaluru, Karnataka, India
⏰ Full-time
🏢 Harness

Job details jobsfordevelopers.com/jobs/sta
#jobalert #jobsearch #hiring




Show Original Post


14.02.2026 17:01
PythonPeak (@PythonPeak@mastodon.social)

Python Collections Userstring

collections.UserString for custom string behavior
Extend string functionality

youtube.com/watch?v=Rzzi7G_TmkU




Show Original Post


1 ...483 484 485 486 487 488 489 490 491 492 493 ...1589
UP