See what happens if a pep was accepted.
- PEP211 - Adding A New Outer Product Operator
- PEP231 - __findattr__()
- PEP276 - Simple Iterator for ints
- PEP313 - Adding Roman Numeral Literals to Python
- PEP336 - Make None Callable
- PEP377 - Allow __enter__() methods to skip the statement body
from pepallow.allow import Allow
with Allow(313):
assert IV == 4
with Allow(211):
s = [1, 2, 3]
t = "abc"
for i, j in s @ t:
pass
...