Changeset 3d26787a02dd791304a412c3378a76668ca2fc04

Show
Ignore:
Timestamp:
12/09/05 14:12:14 (3 years ago)
Author:
Olivier Aubert <olivier.aubert@liris.cnrs.fr>
git-committer:
Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1134133934 +0000
git-parent:

[beca754e47f99aa7610049d2ecd29e9947c30027]

git-author:
Olivier Aubert <olivier.aubert@liris.cnrs.fr> 1134133934 +0000
Message:

python/vlcglue.c : Clear the exception when vlc.MediaControl? is instanciated with no parameter.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bindings/python/vlcglue.c

    ra525a71 r3d26787  
    33 ***************************************************************************** 
    44 * Copyright (C) 1998-2004 the VideoLAN team 
    5  * $Id: vlc.c 12667 2005-09-25 10:19:26Z zorglub
     5 * $Id
    66 * 
    77 * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr> 
     
    778778        Py_DECREF(py_list); 
    779779    } 
     780    else 
     781    { 
     782        /* No arguments were given. Clear the exception raised 
     783     * by PyArg_ParseTuple. */ 
     784        PyErr_Clear(); 
     785    } 
    780786 
    781787    Py_BEGIN_ALLOW_THREADS