diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-09-13 00:21:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-09-13 00:21:24 (GMT) |
commit | 70343bf47d558dbfc26fc872de0504be3b2f33fe (patch) | |
tree | 457748087a8210e59c2f9322e97e7009c83d4087 /Lib/distutils | |
parent | 6408dc82fabf5bbbc8b7ed7287e34b4e0080191d (diff) | |
parent | f07422c0258d0ba6e3887f71f7d726bcde9adb35 (diff) | |
download | cpython-70343bf47d558dbfc26fc872de0504be3b2f33fe.zip cpython-70343bf47d558dbfc26fc872de0504be3b2f33fe.tar.gz cpython-70343bf47d558dbfc26fc872de0504be3b2f33fe.tar.bz2 |
merge 3.5 (#25076)
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index b7df394..82fd7d5 100644 --- a/Lib/distutils/ccompiler.py +++ b/Lib/distutils/ccompiler.py @@ -752,7 +752,7 @@ class CCompiler: raise NotImplementedError def library_option(self, lib): - """Return the compiler option to add 'dir' to the list of libraries + """Return the compiler option to add 'lib' to the list of libraries linked into the shared library or executable. """ raise NotImplementedError |