[Python-checkins] cpython (merge default -> default): Branch merge

eric.araujo python-checkins at python.org
Thu May 26 16:51:48 CEST 2011


http://hg.python.org/cpython/rev/9930e5dc2e96
changeset:   70412:9930e5dc2e96
parent:      70411:e5ff8ca071ee
parent:      70405:6ee5443773cb
user:        Éric Araujo <merwok at netwok.org>
date:        Wed May 25 18:22:11 2011 +0200
summary:
  Branch merge

files:
  Doc/library/site.rst          |  4 ++++
  Tools/scripts/findnocoding.py |  4 ++--
  Tools/scripts/pysource.py     |  2 +-
  3 files changed, 7 insertions(+), 3 deletions(-)


diff --git a/Doc/library/site.rst b/Doc/library/site.rst
--- a/Doc/library/site.rst
+++ b/Doc/library/site.rst
@@ -129,6 +129,10 @@
    unless the :program:`python` interpreter was started with the :option:`-S`
    flag.
 
+   .. versionchanged:: 3.3
+      This function used to be called unconditionnally.
+
+
 .. function:: addsitedir(sitedir, known_paths=None)
 
    Adds a directory to sys.path and processes its pth files.
diff --git a/Tools/scripts/findnocoding.py b/Tools/scripts/findnocoding.py
--- a/Tools/scripts/findnocoding.py
+++ b/Tools/scripts/findnocoding.py
@@ -2,7 +2,7 @@
 
 """List all those Python files that require a coding directive
 
-Usage: nocoding.py dir1 [dir2...]
+Usage: findnocoding.py dir1 [dir2...]
 """
 
 __author__ = "Oleg Broytmann, Georg Brandl"
@@ -50,7 +50,7 @@
 
 def needs_declaration(fullpath):
     try:
-        infile = open(fullpath, 'rU')
+        infile = open(fullpath)
     except IOError: # Oops, the file was removed - ignore it
         return None
 
diff --git a/Tools/scripts/pysource.py b/Tools/scripts/pysource.py
--- a/Tools/scripts/pysource.py
+++ b/Tools/scripts/pysource.py
@@ -42,7 +42,7 @@
         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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list