~ubuntu-branches/ubuntu/intrepid/gimp/intrepid-updates

« back to all changes in this revision

Viewing changes to plug-ins/pygimp/pygimp-pdb.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-11-21 17:39:07 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20071121173907-od54p9hdtvn5frl0
Tags: 2.4.1-1ubuntu1
* Merge from Debian unstable.
* Remaining Ubuntu changes:
  - 02_help-message.patch, 03_gimp.desktop.in.in.patch: Distro changes.
  - Weave i18n magic in the rules file.
  - Munge Maintainer field as per spec.
* Ubuntu changes dropped:
  - Apply patch from upstream (SVN r23659) that corrects the image
    disappearing for large images at 150% zoom.
  - Symlink doc directories to avoid duplicate files, CDBS does this for
    us.

Show diffs side-by-side

added added

removed removed

Lines of Context:
326
326
    }
327
327
    if (!PyTuple_Check(tuple)) {
328
328
        PyErr_SetString(PyExc_TypeError, "wrong type of parameter");
 
329
        Py_DECREF(tuple);
329
330
        return NULL;
330
331
    }
331
332
 
332
333
    if (PyTuple_Size(tuple) != nparams) {
333
334
        PyErr_SetString(PyExc_TypeError, "wrong number of parameters");
 
335
        Py_DECREF(tuple);
334
336
        return NULL;
335
337
    }
336
338