spylang/spy

Add support for chained comparisons

Offen

#249 geöffnet am 04.10.2025

 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Python (60 Forks)auto 404
help wanted

Repository-Metriken

Stars
 (803 Sterne)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

def main() -> None:
    if 1 < 2 < 3:
        print('hello')
❯ spy /tmp/x.spy 
ParseError: not implemented yet: chained comparisons
   --> /tmp/x.spy:2:16
  2 |     if 1 < 2 < 3:
    |                ^ this is not supported

Contributor Guide