Andrey
Results
1
issues of
Andrey
get key with not None value ``` >>> import bottle >>> x = bottle.WSGIHeaderDict({"HTTP_X": "y", "HTTP_Z": None}) >>> print(x.get("x")) y ``` get absent key ``` >>> print(x.get("w")) None ``` get...