changeset: 76735:cdc4e0f8135d user: Larry Hastings date: Thu May 03 12:56:44 2012 -0700 files: Lib/shutil.py description: Issue #14127: Fix no-op stub for platforms that lack some "os" functions. diff -r 5a4276fdf4b7 -r cdc4e0f8135d Lib/shutil.py --- a/Lib/shutil.py Thu May 03 18:29:02 2012 +0100 +++ b/Lib/shutil.py Thu May 03 12:56:44 2012 -0700 @@ -138,7 +138,7 @@ 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):