Browse Source

Issue #14127: Fix no-op stub for platforms that lack some "os" functions.

pull/2332/head
Larry Hastings 14 years ago
parent
commit
b14544807e
  1. 2
      Lib/shutil.py

2
Lib/shutil.py

@ -138,7 +138,7 @@ def copystat(src, dst, symlinks=False):
only if both `src` and `dst` are symlinks.
"""
def _nop(*args):
def _nop(*args, ns=None):
pass
if symlinks and os.path.islink(src) and os.path.islink(dst):

Loading…
Cancel
Save