From: Olivier Aubert Date: Fri, 31 Jul 2009 15:29:26 +0000 (+0200) Subject: python-ctypes: fix docstrings X-Git-Tag: 1.1.0-ff~4670 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8994bf8f66df978194d2f17d363702b2bf9ca928;p=vlc python-ctypes: fix docstrings --- diff --git a/bindings/python-ctypes/override.py b/bindings/python-ctypes/override.py index 92da39ba96..0bd39ca373 100644 --- a/bindings/python-ctypes/override.py +++ b/bindings/python-ctypes/override.py @@ -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: