From 58ffe40eb97c7292c01a360f5fbc4b4b65072da8 Mon Sep 17 00:00:00 2001 From: Allison Kaptur Date: Sun, 26 May 2013 19:20:02 -0400 Subject: [PATCH] Remove 'python -c' You should have either `python -c` or '>>>', but not both. I'm not sure whether "$ python -c 'import this'" or '>>> import this' is better, but the current version is definitely wrong. --- docs/contributing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.rst b/docs/contributing.rst index aeea640..2272686 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -176,7 +176,7 @@ Best Practices Follow PEP-0008 and memorize the Zen of Python:: - >>> python -c 'import this' + >>> import this Please keep your code as clean and straightforward as possible. When we see more than one or two functions/methods starting with `_my_special_function` or things like `__builtins__.object = str` we start to get worried. Rather than try and figure out your brilliant work we'll just **reject** it and send along a request for simplification.