This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import division | |
import json | |
import os | |
import urlparse | |
from collections import defaultdict | |
from datetime import datetime | |
from dateutil.relativedelta import relativedelta | |
from requests import HTTPError | |
from requests_oauthlib import OAuth1Session |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zipimport | |
# Used to try and prevent bugs from people who see that Wheels | |
# support being added to sys.path and expect that your library/tool should | |
# support this misfeature. | |
try: | |
if isinstance(__loader__, zipimport.zipimporter): | |
raise RuntimeError( | |
"Zipped imports are not supported, use something less terrible." | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git diff --no-prefix --ignore-space-at-eol | sed -e "s/^diff --git [^[:space:]]*/Index:/" -e "s/^index.*/===================================================================/" > changes.patch |