From 8994bf8f66df978194d2f17d363702b2bf9ca928 Mon Sep 17 00:00:00 2001 From: Olivier Aubert Date: Fri, 31 Jul 2009 17:29:26 +0200 Subject: [PATCH] python-ctypes: fix docstrings --- bindings/python-ctypes/override.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) 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: -- 2.39.2