]> granicus.if.org Git - python/commitdiff
Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge...
authorBenjamin Peterson <benjamin@python.org>
Mon, 3 Nov 2008 20:31:38 +0000 (20:31 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 3 Nov 2008 20:31:38 +0000 (20:31 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67028 | benjamin.peterson | 2008-10-25 18:27:07 -0500 (Sat, 25 Oct 2008) | 1 line

  don't use a catch-all
........
  r67040 | armin.rigo | 2008-10-28 12:01:21 -0500 (Tue, 28 Oct 2008) | 5 lines

  Fix one of the tests: it relied on being present in an "output test" in
  order to actually test what it was supposed to test, i.e. that the code
  in the __del__ method did not crash.  Use instead the new helper
  test_support.captured_output().
........
  r67044 | amaury.forgeotdarc | 2008-10-29 18:15:57 -0500 (Wed, 29 Oct 2008) | 3 lines

  Correct error message in io.open():
  closefd=True is the only accepted value with a file name.
........
  r67046 | thomas.heller | 2008-10-30 15:18:13 -0500 (Thu, 30 Oct 2008) | 2 lines

  Fixed a modulefinder crash on certain relative imports.
........
  r67052 | christian.heimes | 2008-10-30 16:26:15 -0500 (Thu, 30 Oct 2008) | 1 line

  Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members.
........
  r67065 | benjamin.peterson | 2008-10-30 18:59:18 -0500 (Thu, 30 Oct 2008) | 1 line

  move unprefixed error into .c file
........
  r67070 | benjamin.peterson | 2008-10-31 15:41:44 -0500 (Fri, 31 Oct 2008) | 1 line

  rephrase has_key doc
........
  r67077 | benjamin.peterson | 2008-11-03 09:14:51 -0600 (Mon, 03 Nov 2008) | 1 line

  #4048 make the parser module accept relative imports as valid
........
  r67082 | hirokazu.yamamoto | 2008-11-03 12:03:06 -0600 (Mon, 03 Nov 2008) | 2 lines

  Issue #3774: Fixed an error when create a Tkinter menu item without command
  and then remove it. Written by Guilherme Polo (gpolo).
........

12 files changed:
Doc/ACKS.txt
Include/compile.h
Lib/modulefinder.py
Lib/test/test_descr.py
Lib/test/test_io.py
Lib/test/test_modulefinder.py
Lib/test/test_parser.py
Misc/ACKS
Modules/_fileio.c
Modules/parsermodule.c
Python/future.c
Tools/scripts/findnocoding.py

index 965358dd8477707ac07c05bac6f3a1b5cbe24f77..4537c654788b2f766a423cfb8f5fb07d45a7e5d8 100644 (file)
@@ -16,6 +16,7 @@ docs@python.org), and we'll be glad to correct the problem.
    * A. Amoroso
    * Pehr Anderson
    * Oliver Andrich
+   * Heidi Annexstad
    * Jesús Cea Avión
    * Daniel Barclay
    * Chris Barker
index d24cad789a6461f7a00c0137a5d10b9ff282cdd4..d78f8249ec068cdf580fe2b9428a2fce7695e39f 100644 (file)
@@ -32,8 +32,6 @@ PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
                                        PyCompilerFlags *, PyArena *);
 PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
 
-#define ERR_LATE_FUTURE \
-"from __future__ imports must occur at the beginning of the file"
 
 #ifdef __cplusplus
 }
index e4184a16a245922153f96f28a512b427b9e3788f..989172aa8f6861080c6b0dd4075c49803e8ce9d6 100644 (file)
@@ -310,7 +310,10 @@ class ModuleFinder:
     def _add_badmodule(self, name, caller):
         if name not in self.badmodules:
             self.badmodules[name] = {}
-        self.badmodules[name][caller.__name__] = 1
+        if caller:
+            self.badmodules[name][caller.__name__] = 1
+        else:
+            self.badmodules[name]["-"] = 1
 
     def _safe_import_hook(self, name, caller, fromlist, level=-1):
         # wrapper for self.import_hook() that won't raise ImportError
index 85df9dca1e2696985d1b8b1b89590880ef8823ed..0e1f7c36971634ec960085bc2b7d4f5b97860ecb 100644 (file)
@@ -1020,14 +1020,10 @@ order (MRO) for bases """
             def __del__(self_):
                 self.assertEqual(self_.a, 1)
                 self.assertEqual(self_.b, 2)
-
-        save_stderr = sys.stderr
-        sys.stderr = sys.stdout
-        h = H()
-        try:
+        with test_support.captured_output('stderr') as s:
+            h = H()
             del h
-        finally:
-            sys.stderr = save_stderr
+        self.assertEqual(s.getvalue(), '')
 
     def test_slots_special(self):
         # Testing __dict__ and __weakref__ in __slots__...
index ea965d77d56f91cd87a49fc9acee7fd3f56f97bd..f28bade6c72932659bd0b5f9e497508a391eb6c9 100644 (file)
@@ -1245,6 +1245,7 @@ class MiscIOTest(unittest.TestCase):
             self.assertRaises(ValueError, io.FileIO, "/some/invalid/name", "rt")
             self.assertEqual(w.warnings, [])
 
+
 def test_main():
     support.run_unittest(IOTest, BytesIOTest, StringIOTest,
                               BufferedReaderTest, BufferedWriterTest,
index 85bc6697b1262f5a5a2190e7468978bd1c8944e6..bee2abb63e1397bc329be3c26264185081aa030a 100644 (file)
@@ -190,6 +190,19 @@ a/b/c/e.py
 a/b/c/f.py
 """]
 
+relative_import_test_3 = [
+    "a.module",
+    ["a", "a.module"],
+    ["a.bar"],
+    [],
+    """\
+a/__init__.py
+                                def foo(): pass
+a/module.py
+                                from . import foo
+                                from . import bar
+"""]
+
 def open_file(path):
     ##print "#", os.path.abspath(path)
     dirname = os.path.dirname(path)
@@ -256,6 +269,9 @@ class ModuleFinderTest(unittest.TestCase):
         def test_relative_imports_2(self):
             self._do_test(relative_import_test_2)
 
+        def test_relative_imports_3(self):
+            self._do_test(relative_import_test_3)
+
 def test_main():
     distutils.log.set_threshold(distutils.log.WARN)
     support.run_unittest(ModuleFinderTest)
index cec4c70aa203c3e3f8f27536d57c8911d46eec92..449005276a92a95dceb260691e9948fc3e45491b 100644 (file)
@@ -1,4 +1,5 @@
 import parser
+import os
 import unittest
 import sys
 from test import support
@@ -172,6 +173,7 @@ class RoundtripLegalSyntaxTestCase(unittest.TestCase):
             "from sys.path import (dirname, basename as my_basename)")
         self.check_suite(
             "from sys.path import (dirname, basename as my_basename,)")
+        self.check_suite("from .bogus import x")
 
     def test_basic_import_statement(self):
         self.check_suite("import sys")
index 0cc5adea1ed7274ff940a08c87ca3117d632ae87..a33b6e9cf2e6633e6e50f2df0b4c8696e8489cf4 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -61,6 +61,7 @@ Eric Beser
 Steven Bethard
 Stephen Bevan
 Ron Bickers
+David Binger
 Dominic Binks
 Philippe Biondi
 Stuart Bishop
index 4b3519434ae7d68df51f6e2680dad26e1a5cf9d7..a946ea51284a6521775ef285e5681618b957c587 100644 (file)
@@ -251,7 +251,7 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
                self->closefd = 1;
                if (!closefd) {
                        PyErr_SetString(PyExc_ValueError,
-                            "Cannot use closefd=True with file name");
+                            "Cannot use closefd=False with file name");
                        goto error;
                }
 
index 652b07ce80b9e42a235a01918c5f9331bc777d95..58d7dfb29c56608bf2d0dee96f3310e75fa5cd5b 100644 (file)
@@ -1710,10 +1710,10 @@ static int
 count_from_dots(node *tree)
 {
         int i;
-        for (i = 0; i < NCH(tree); i++)
+        for (i = 1; i < NCH(tree); i++)
                if (TYPE(CHILD(tree, i)) != DOT)
                        break;
-        return i;
+        return i-1;
 }
 
 /* 'from' ('.'* dotted_name | '.') 'import' ('*' | '(' import_as_names ')' |
index e775384ec28968b73f079d4bd0d03b8933c043f0..1a2db1b84370cec7731f3548ae9b4cb740fae165 100644 (file)
@@ -8,6 +8,8 @@
 #include "symtable.h"
 
 #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
+#define ERR_LATE_FUTURE \
+"from __future__ imports must occur at the beginning of the file"
 
 static int
 future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename)
index 84dc3e052fadfa113ccffeaed176e156fccd5677..78fc8efeba3c1627f21a1dd35ae452c26c537300 100755 (executable)
@@ -12,7 +12,7 @@ import sys, os, re, getopt
 # our pysource module finds Python source files
 try:
     import pysource
-except:
+except ImportError:
     # emulate the module with a simple os.walk
     class pysource:
         has_python_ext = looks_like_python = can_be_compiled = None