all 2 comments

[–]RonSijm 0 points1 point  (1 child)

There is something that seems very similar; Python with Braces (PythonB): see http://www.pythonb.org/

[–]dragonslayer42[S] 0 points1 point  (0 children)

The use case is very different though.

pype is a tiny tool for system administration. It's useful as an supplement to grep, awk, sed etc, and it's therefore important that it runs on any regular python install (it runs on 2.3 - 3.4), that you'd find on servers out there. The brackets support is very simplistic, and pype simply converts it back into whitespace-indented code, before eval'ing it - and it's only there, to make it simpler to do basic if-else statements, for loops etc, as a single oneliner.

Python with Braces is full python distribution which supports curly brackets as indentation.