~ubuntu-branches/ubuntu/wily/sip4/wily

« back to all changes in this revision

Viewing changes to siplib/descriptors.c

  • Committer: Package Import Robot
  • Author(s): Dmitry Shachnev
  • Date: 2014-06-01 12:38:17 UTC
  • mfrom: (1.4.2)
  • Revision ID: package-import@ubuntu.com-20140601123817-a5egi34p5tlywago
Tags: 4.16+dfsg-1
* New upstream release.
* Bump API version to 11.1 (keep 11.0 in provided versions).
* Update debian/copyright to copyright-format 1.0.
* Add Files-Excluded field to remove HTML documentation, which
  contains sourceless minified jquery.
* Simplify debian/watch, and mangle dfsg version.
* Add get-orig-source target to debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    0,                      /* tp_base */
91
91
    0,                      /* tp_dict */
92
92
    sipMethodDescr_descr_get,   /* tp_descr_get */
 
93
    0,                      /* tp_descr_set */
 
94
    0,                      /* tp_dictoffset */
 
95
    0,                      /* tp_init */
 
96
    0,                      /* tp_alloc */
 
97
    0,                      /* tp_new */
 
98
    0,                      /* tp_free */
 
99
    0,                      /* tp_is_gc */
 
100
    0,                      /* tp_bases */
 
101
    0,                      /* tp_mro */
 
102
    0,                      /* tp_cache */
 
103
    0,                      /* tp_subclasses */
 
104
    0,                      /* tp_weaklist */
 
105
    0,                      /* tp_del */
 
106
    0,                      /* tp_version_tag */
 
107
#if PY_VERSION_HEX >= 0x03040000
 
108
    0,                      /* tp_finalize */
 
109
#endif
93
110
};
94
111
 
95
112
 
136
153
{
137
154
    sipMethodDescr *md = (sipMethodDescr *)self;
138
155
 
 
156
    (void)type;
 
157
 
139
158
    if (obj == Py_None)
140
159
        obj = NULL;
141
160
    else if (md->mixin_name != NULL)
279
298
    0,                      /* tp_dict */
280
299
    sipVariableDescr_descr_get, /* tp_descr_get */
281
300
    sipVariableDescr_descr_set, /* tp_descr_set */
 
301
    0,                      /* tp_dictoffset */
 
302
    0,                      /* tp_init */
 
303
    0,                      /* tp_alloc */
 
304
    0,                      /* tp_new */
 
305
    0,                      /* tp_free */
 
306
    0,                      /* tp_is_gc */
 
307
    0,                      /* tp_bases */
 
308
    0,                      /* tp_mro */
 
309
    0,                      /* tp_cache */
 
310
    0,                      /* tp_subclasses */
 
311
    0,                      /* tp_weaklist */
 
312
    0,                      /* tp_del */
 
313
#if PY_VERSION_HEX >= 0x02060000
 
314
    0,                      /* tp_version_tag */
 
315
#endif
 
316
#if PY_VERSION_HEX >= 0x03040000
 
317
    0,                      /* tp_finalize */
 
318
#endif
282
319
};
283
320
 
284
321