Remove fix for version-specific documentation URLs in pydoc

This was fixed upstream some time ago. The removed sed invocation
did nothing.
This commit is contained in:
Petr Viktorin 2017-08-28 17:30:42 +02:00
parent 28aab8e5db
commit 9faeaef40a
1 changed files with 0 additions and 10 deletions

View File

@ -650,16 +650,6 @@ sed -r -i s/'_PIP_VERSION = "[0-9.]+"'/'_PIP_VERSION = "%{pip_version}"'/ Lib/en
%patch273 -p1
%patch274 -p1
# Currently (2010-01-15), http://docs.python.org/library is for 2.6, and there
# are many differences between 2.6 and the Python 3 library.
#
# Fix up the URLs within pydoc to point at the documentation for this
# MAJOR.MINOR version:
#
sed --in-place \
--expression="s|http://docs.python.org/library|http://docs.python.org/%{pybasever}/library|g" \
Lib/pydoc.py || exit 1
# Remove files that should be generated by the build
# (This is after patching, so that we can use patches directly from upstream)