~ubuntu-branches/ubuntu/karmic/python3.0/karmic

« back to all changes in this revision

Viewing changes to Modules/grpmodule.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-16 17:18:23 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090216171823-1d5cm5qnnjvmnzzm
Tags: 3.0.1-0ubuntu1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    unsigned int gid;
91
91
    struct group *p;
92
92
 
93
 
    py_int_id = PyNumber_Int(pyo_id);
 
93
    py_int_id = PyNumber_Long(pyo_id);
94
94
    if (!py_int_id)
95
95
            return NULL;
96
96
    gid = PyLong_AS_LONG(py_int_id);