Skip to content

Instantly share code, notes, and snippets.

View darvil82's full-sized avatar
:fishsticks:
<- food

darvil darvil82

:fishsticks:
<- food
  • Spain
  • 10:27 (UTC +02:00)
View GitHub Profile
@trag1c
trag1c / rejected_peps.md
Last active January 8, 2024 19:44
The best of rejected PEPs

The best of rejected PEPs

A collection of my best findings when looking through rejected Python Enhancement Proposals (as of Jan 6, 2024).

PEP 204: Range Literals

(2000, Python 2.0)

>>> [1:10]
[1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> [:5]
[0, 1, 2, 3, 4]