Skip to content

Commit 48213f8

Browse files
committed
Rewrite the comment to focus on the mechanics and not the author.
1 parent 319cff0 commit 48213f8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

distutils/unixccompiler.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -373,10 +373,10 @@ def find_library_file(self, dirs, lib, debug=0):
373373
static = os.path.join(root, static_f)
374374
xcode_stub = os.path.join(root, xcode_stub_f)
375375

376-
# We're second-guessing the linker here, with not much hard
377-
# data to go on: GCC seems to prefer the shared library, so I'm
378-
# assuming that *all* Unix C compilers do. And of course I'm
379-
# ignoring even GCC's "-static" option. So sue me.
376+
# Second-guess the linker with not much hard
377+
# data to go on: GCC seems to prefer the shared library, so
378+
# assume that *all* Unix C compilers do,
379+
# ignoring even GCC's "-static" option.
380380
if os.path.exists(dylib):
381381
return dylib
382382
elif os.path.exists(xcode_stub):

0 commit comments

Comments
 (0)