Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2010-07-20 02:43:45 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-07-20 02:43:45 +0400
commit4490e409a4cca37f88bc6448c4f074e182ef121b (patch)
tree19dd743c6fc2bd665492fdfbf76959588f5dfc27 /intern/audaspace/Python/AUD_PyAPI.cpp
parent1f7bcf25447c8b2e2881d10d46f41d493c20cc09 (diff)
parentc7ce37471d8f7858735695ad92db1731fa2c1ae3 (diff)
svn merge -r 30418:30512 https://svn.blender.org/svnroot/bf-blender/trunk/blender
Diffstat (limited to 'intern/audaspace/Python/AUD_PyAPI.cpp')
-rw-r--r--intern/audaspace/Python/AUD_PyAPI.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/intern/audaspace/Python/AUD_PyAPI.cpp b/intern/audaspace/Python/AUD_PyAPI.cpp
index a89bd66e3ef..f62135b66e5 100644
--- a/intern/audaspace/Python/AUD_PyAPI.cpp
+++ b/intern/audaspace/Python/AUD_PyAPI.cpp
@@ -136,7 +136,8 @@ Sound_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
}
PyDoc_STRVAR(M_aud_Sound_sine_doc,
- "Creates a sine sound at a specific frequency.");
+ "sine()\n"
+ "\tCreates a sine sound at a specific frequency.\n");
static PyObject *
Sound_sine(PyObject* nothing, PyObject* args);
@@ -1652,7 +1653,9 @@ Device_get_status(Device *self, PyObject *object)
}
PyDoc_STRVAR(M_aud_Device_lock_doc,
- "Locks the sound device.");
+ ".. function:: lock()\n"
+ "\n"
+ " Locks the sound device.\n");
static PyObject *
Device_lock(Device *self)