Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
8994bf8f
Commit
8994bf8f
authored
Jul 31, 2009
by
Olivier Aubert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python-ctypes: fix docstrings
parent
b20a8ec1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
bindings/python-ctypes/override.py
bindings/python-ctypes/override.py
+12
-12
No files found.
bindings/python-ctypes/override.py
View file @
8994bf8f
...
...
@@ -2,10 +2,10 @@ class Instance:
"""Create a new Instance instance.
It may take as parameter either:
*
a string
*
a list of strings as first parameters
*
the parameters given as the constructor parameters (must be strings)
*
a MediaControl instance
-
a string
-
a list of strings as first parameters
-
the parameters given as the constructor parameters (must be strings)
-
a MediaControl instance
"""
def
__new__
(
cls
,
*
p
):
if
p
and
p
[
0
]
==
0
:
...
...
@@ -51,10 +51,10 @@ class MediaControl:
"""Create a new MediaControl instance
It may take as parameter either:
*
a string
*
a list of strings as first parameters
*
the parameters given as the constructor parameters (must be strings)
*
a vlc.Instance
-
a string
-
a list of strings as first parameters
-
the parameters given as the constructor parameters (must be strings)
-
a vlc.Instance
"""
def
__new__
(
cls
,
*
p
):
if
p
and
p
[
0
]
==
0
:
...
...
@@ -81,8 +81,8 @@ class MediaPlayer:
"""Create a new MediaPlayer instance.
It may take as parameter either:
*
a string (media URI). In this case, a vlc.Instance will be created.
*
a vlc.Instance
-
a string (media URI). In this case, a vlc.Instance will be created.
-
a vlc.Instance
"""
def
__new__
(
cls
,
*
p
):
if
p
and
p
[
0
]
==
0
:
...
...
@@ -109,8 +109,8 @@ class MediaListPlayer:
"""Create a new MediaPlayer instance.
It may take as parameter either:
*
a vlc.Instance
*
nothing
-
a vlc.Instance
-
nothing
"""
def
__new__
(
cls
,
*
p
):
if
p
and
p
[
0
]
==
0
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment