this post was submitted on 01 Dec 2023
20 points (100.0% liked)

Python

6229 readers
33 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

πŸ“… Events

October 2023

November 2023

PastJuly 2023

August 2023

September 2023

🐍 Python project:
πŸ’“ Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 1 year ago
MODERATORS
 

Python's standard logging API violates PEP-8 and this #PEP proposes to fix this. Feedback and criticism of all sort is welcome.

top 3 comments
sorted by: hot top controversial new old
[–] Sigmatics@lemmy.ca 6 points 9 months ago* (last edited 9 months ago)

While we're at it, can we please define enums for the standard logging levels in the stdlib

[–] onlinepersona@programming.dev 3 points 9 months ago

Indeed, this has been a little baffling for me. If I'm not mistaken there are even some snake case aliases for some things in the logging library, but it's hard to guess which ones. Deprecating everything that doesn't conform and removing them in a future major release is the way to go, IMO.

[–] robyoung@beehaw.org 2 points 9 months ago

Yes! I hope this is a trend that continues. I remember this being quite confusing as a new Python developer. I was convinced there was something special about these kinds of camel cased methods.