Kristian Glass
Kristian Glass
Yeah I'm not sure how much I like the syntax, but I've not found a happier alternative - tuples make it a pain to have optional arguments; dicts might be...
Fun observations: `DATABASE_URL` is a bit of a faff because it breaks the "setting name == env var name" assumption. For customisable defaults you can do something like: ``` python...
Thanks! So, reading `help()`: ``` >>> help(sys.exit) Help on built-in function exit in module sys: exit(...) exit([status]) Exit the interpreter by raising SystemExit(status). If the status is omitted or None,...
No worries! That sounds like it might be a bug their side then? If you could file an issue and link it here I'd love to follow along please :)...
I guess more generally it might be more friendly to throw an exception - would that be a helpful workaround for you? (I don't really understand the PyCharm issue you're...
I have used this commit in https://github.com/python/peps/pull/851. That repository now seems to be the canonical home of this PEP - does a copy still belong here? @dstufft ...?
Great, thanks