]> granicus.if.org Git - python/commitdiff
Merged revisions 74010,74034,74054 via svnmerge from
authorGeorg Brandl <georg@python.org>
Thu, 13 Aug 2009 09:15:16 +0000 (09:15 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 13 Aug 2009 09:15:16 +0000 (09:15 +0000)
svn+ssh://svn.python.org/python/branches/py3k

................
  r74010 | r.david.murray | 2009-07-15 16:16:54 +0200 (Mi, 15 Jul 2009) | 2 lines

  PEP-8-ify r73389.
................
  r74034 | alexandre.vassalotti | 2009-07-17 07:35:59 +0200 (Fr, 17 Jul 2009) | 2 lines

  The output() function takes only one string argument.
................
  r74054 | alexandre.vassalotti | 2009-07-17 10:31:44 +0200 (Fr, 17 Jul 2009) | 14 lines

  Merged revisions 74051-74052 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r74051 | alexandre.vassalotti | 2009-07-17 03:54:23 -0400 (Fri, 17 Jul 2009) | 2 lines

    Initialize variables in PyCurses_getsyx() to avoid compiler warnings.
  ........
    r74052 | alexandre.vassalotti | 2009-07-17 04:09:04 -0400 (Fri, 17 Jul 2009) | 3 lines

    Fix GCC warning about fprintf used without a string literal and
    without format arguments.
  ........
................

Lib/doctest.py
Modules/_cursesmodule.c
Modules/main.c
Parser/asdl.py

index 3d053d9bfdf7c1eac9bf7f82bc5b84b9a716e5e9..b95566f6c68c01146c98920a45180cd05186ea72 100644 (file)
@@ -821,7 +821,8 @@ class DocTestFinder:
                 # (see __patched_linecache_getlines).
                 file = inspect.getfile(obj)
                 if not file[0]+file[-2:] == '<]>': file = None
-            if file is None: source_lines = None
+            if file is None:
+                source_lines = None
             else:
                 if module is not None:
                     # Supply the module globals in case the module was
index a92cc8e1359267e4ddebb519671ca937133ada9e..c7d377859d2d0e3990981e6c756f0435e5e92c9c 100644 (file)
@@ -1806,7 +1806,8 @@ PyCurses_EraseChar(PyObject *self)
 static PyObject *
 PyCurses_getsyx(PyObject *self)
 {
-  int x,y;
+  int x = 0;
+  int y = 0;
 
   PyCursesInitialised
 
index 8352e6672220e47e52e9d773629f80a114d67aba..22794dafb9b7d6788d2883f1f521a7b2ed0d4e55 100644 (file)
@@ -131,9 +131,9 @@ usage(int exitcode, wchar_t* program)
        if (exitcode)
                fprintf(f, "Try `python -h' for more information.\n");
        else {
-               fprintf(f, usage_1);
-               fprintf(f, usage_2);
-               fprintf(f, usage_3);
+               fputs(usage_1, f);
+               fputs(usage_2, f);
+               fputs(usage_3, f);
                fprintf(f, usage_4, DELIM);
                fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
        }
index 28a7138797895d61389bcc011bf1b9ab346c84c1..ca91b6e2a0a063bb70785620932fc5da14344e84 100644 (file)
@@ -323,8 +323,8 @@ class VisitorBase(object):
         try:
             meth(object, *args)
         except Exception:
-            output("Error visiting", repr(object))
-            output(sys.exc_info()[1])
+            output("Error visiting" + repr(object))
+            output(str(sys.exc_info()[1]))
             traceback.print_exc()
             # XXX hack
             if hasattr(self, 'file'):