From 6b075f6cb7ed9b976701918be8eb1c2e04c0b9fd Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Sat, 4 Aug 2012 09:18:46 +0200 Subject: [PATCH] Add comment to the README. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a8c72b2..4dbd6a3 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ your typically lengthy or blocking function: import requests def count_words_at_url(url): + """Just an example function that's called async.""" resp = requests.get(url) return len(resp.text.split()) ```