~ubuntu-branches/debian/experimental/pygame/experimental

« back to all changes in this revision

Viewing changes to src/fastevent.c

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng, Vincent Cheng, Jakub Wilk
  • Date: 2014-02-19 01:41:42 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20140219014142-ab2ar7sw7yoisv7x
Tags: 1.9.2~pre~r3348-1
[ Vincent Cheng ]
* Set Debian Python Modules Team <python-modules-team@l.a.d.o> as new
  maintainer, and move Ed Boraas into Uploaders with his consent.
  - Update Vcs-* fields accordingly.
* Replace dependency ttf-freefont -> fonts-freefont-ttf. (Closes: #738244)
* Replace build-dep on python3.2 (>= 3.2.3-7) with build-conflicts instead.
* Remove dependency on ${python:Provides}.
* Remove Replaces+Conflicts with obsolete pygame packages.
* Update Standards version to 3.9.5.
* Update my email address.

[ Jakub Wilk ]
* Run tests only if DEB_BUILD_OPTIONS=nocheck is not set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    }                                                                   \
40
40
    while (0)
41
41
 
42
 
static void 
 
42
static void
43
43
fastevent_cleanup (void)
44
44
{
45
45
    if (FE_WasInit)
278
278
    */
279
279
    import_pygame_base ();
280
280
    if (PyErr_Occurred ()) {
281
 
        MODINIT_ERROR;
 
281
        MODINIT_ERROR;
282
282
    }
283
283
    import_pygame_event ();
284
284
    if (PyErr_Occurred ()) {
285
 
        MODINIT_ERROR;
 
285
        MODINIT_ERROR;
286
286
    }
287
287
 
288
288
    /* create the module */
289
289
#if PY3
290
290
    module = PyModule_Create (&_module);
291
291
#else
292
 
    module = Py_InitModule3 (MODPREFIX "fastevent", 
 
292
    module = Py_InitModule3 (MODPREFIX "fastevent",
293
293
                             _fastevent_methods,
294
294
                             doc_fastevent_MODULE);
295
295
#endif