Added an explanatory comment.
diff --git a/tasks.py b/tasks.py
index 50eb90a..860584b 100644
--- a/tasks.py
+++ b/tasks.py
@@ -94,6 +94,9 @@
 
     session = requests.Session()
 
+    # This tells the CDN to delete the cached response for the URL. We do this
+    # so that the Jenkins builders will see the new sdist immediately when they
+    # go to build the wheels.
     response = session.request(
         "PURGE", "https://pypi.python.org/simple/cryptography/"
     )