~jibel/ubuntu/trusty/python-imaging/lp1248743_enable_autopkgtest

« back to all changes in this revision

Viewing changes to _imagingtk.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-03-20 16:44:01 UTC
  • mfrom: (2.1.13 experimental)
  • Revision ID: package-import@ubuntu.com-20130320164401-ptf6m0ttg4zw72az
Tags: 1.1.7+2.0.0-1
Pillow 2.0.0 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
{
36
36
    Tcl_Interp* interp;
37
37
 
38
 
    long arg;
 
38
    Py_ssize_t arg;
39
39
    int is_interp;
40
 
    if (!PyArg_ParseTuple(args, "li", &arg, &is_interp))
 
40
    if (!PyArg_ParseTuple(args, "ni", &arg, &is_interp))
41
41
        return NULL;
42
42
 
43
43
    if (is_interp)