Changeset 3d26787a02dd791304a412c3378a76668ca2fc04
- 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
| ra525a71 |
r3d26787 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 1998-2004 the VideoLAN team |
|---|
| 5 | | * $Id: vlc.c 12667 2005-09-25 10:19:26Z zorglub $ |
|---|
| | 5 | * $Id$ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr> |
|---|
| … | … | |
| 778 | 778 | Py_DECREF(py_list); |
|---|
| 779 | 779 | } |
|---|
| | 780 | else |
|---|
| | 781 | { |
|---|
| | 782 | /* No arguments were given. Clear the exception raised |
|---|
| | 783 | * by PyArg_ParseTuple. */ |
|---|
| | 784 | PyErr_Clear(); |
|---|
| | 785 | } |
|---|
| 780 | 786 | |
|---|
| 781 | 787 | Py_BEGIN_ALLOW_THREADS |
|---|