diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-28 12:00:49 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-28 12:00:49 -0400 |
commit | b44158ee2190cabf2c6c26ffa98d6e22a98aac58 (patch) | |
tree | 3243cbb99f798c05d9325824f38b73990abaabd9 | |
parent | 0f74a2c128447f0546acab23fbfe87be9a3ea9b6 (diff) | |
download | cryptography-b44158ee2190cabf2c6c26ffa98d6e22a98aac58.tar.gz cryptography-b44158ee2190cabf2c6c26ffa98d6e22a98aac58.tar.bz2 cryptography-b44158ee2190cabf2c6c26ffa98d6e22a98aac58.zip |
Added an explanatory comment.
-rw-r--r-- | tasks.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -94,6 +94,9 @@ def release(version): 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/" ) |