Python HTTP server written in rust

A fast python HTTP server inspired by japronto written in rust. – Project-Dream-Weaver/Pyre… Read more

Similar

Summon the JSON: Python Released

Have fun playing a card game and learn Python! STJ: Python will help you learn to program while having fun at the same time Pre-sell is open Pre-sell for Summon The JSON is open. It is the second language Summon The JSON deck is available for, after JavaS... (more…)

Read more »

Python: default argument blunders

A few minutes ago a friend sent me the following code, and told me its misbehaving: def foo(l=[]): l.append("hello!") print(l) foo() foo() Instead of printing ["hello"] twice, it printed ["hello", "hello"]. Any ideas why? what's going on? I'll... (more…)

Read more »