diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-03-29 12:17:06 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-03-29 12:17:06 -0400 |
commit | 3b90be7bb6323eb44d0f28864509c1d47aa098de (patch) | |
tree | 1c86ff2c6f2fe692de8b7e4a7807a5871692daca /setuptools/command/easy_install.py | |
parent | 0f147d3f3cffda76b6be0fa3e5b396ede7f3bbf2 (diff) | |
download | external_python_setuptools-3b90be7bb6323eb44d0f28864509c1d47aa098de.tar.gz external_python_setuptools-3b90be7bb6323eb44d0f28864509c1d47aa098de.tar.bz2 external_python_setuptools-3b90be7bb6323eb44d0f28864509c1d47aa098de.zip |
Update most bitbucket references to point to Github now. Fixes #422.
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 0733065e..ea5cb028 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -780,7 +780,7 @@ class easy_install(Command): There are a couple of template scripts in the package. This function loads one of them and prepares it for use. """ - # See https://bitbucket.org/pypa/setuptools/issue/134 for info + # See https://github.com/pypa/setuptools/issues/134 for info # on script file naming and downstream issues with SVR4 name = 'script.tmpl' if dev_path: @@ -1762,7 +1762,7 @@ def _update_zipimporter_cache(normalized_path, cache, updater=None): # * Does not support the dict.pop() method, forcing us to use the # get/del patterns instead. For more detailed information see the # following links: - # https://bitbucket.org/pypa/setuptools/issue/202/more-robust-zipimporter-cache-invalidation#comment-10495960 + # https://github.com/pypa/setuptools/issues/202#issuecomment-202913420 # https://bitbucket.org/pypy/pypy/src/dd07756a34a41f674c0cacfbc8ae1d4cc9ea2ae4/pypy/module/zipimport/interp_zipimport.py#cl-99 old_entry = cache[p] del cache[p] |