diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-05-25 18:22:11 +0200 | 
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-05-25 18:22:11 +0200 | 
| commit | 0f67a99fc982ebad6b489a319c2ac521d64ea11e (patch) | |
| tree | 9893faddaac9028b054c3e652b0e0c43c1af08a8 /Tools/scripts/pysource.py | |
| parent | 559b5f1ca0a5dec9d485f01895b61e3d7da5075c (diff) | |
| parent | 17b60f0367db0ae8cd6d4ce6a6ea8330b4802029 (diff) | |
| download | cpython-git-0f67a99fc982ebad6b489a319c2ac521d64ea11e.tar.gz | |
Branch merge
Diffstat (limited to 'Tools/scripts/pysource.py')
| -rw-r--r-- | Tools/scripts/pysource.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Tools/scripts/pysource.py b/Tools/scripts/pysource.py index 048131e243..c7dbe605d4 100644 --- a/Tools/scripts/pysource.py +++ b/Tools/scripts/pysource.py @@ -42,7 +42,7 @@ def _open(fullpath):          return None      try: -        return open(fullpath, 'rU') +        return open(fullpath)      except IOError as err: # Access denied, or a special file - ignore it          print_debug("%s: access denied: %s" % (fullpath, err))          return None | 
