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-08-13 15:49:54 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-08-13 15:49:54 +0400
commit02314f11d83f4ee7e0b2d3f052d36ac492cfc910 (patch)
treed46a71d6a564f276e3e187d428bcf932edcdcf10
parent47d38dbd207bc5dcc5d0965fcf36ea37c366ba35 (diff)
Py API Docs:
* Moving the alternative parser * Checking for classmethods and staticmethods of builtin modules
-rw-r--r--intern/audaspace/Python/AUD_PyAPI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/audaspace/Python/AUD_PyAPI.cpp b/intern/audaspace/Python/AUD_PyAPI.cpp
index 9c724eab8a5..4b1298b04a4 100644
--- a/intern/audaspace/Python/AUD_PyAPI.cpp
+++ b/intern/audaspace/Python/AUD_PyAPI.cpp
@@ -207,7 +207,7 @@ Factory_file(PyTypeObject* type, PyObject* args)
PyDoc_STRVAR(M_aud_Factory_lowpass_doc,
"lowpass(frequency, Q=0.5)\n\n"
"Creates a second order lowpass filter based on the transfer "
- "function H(s) = 1 / (s^2 + s/Q + 1)"
+ "function H(s) = 1 / (s^2 + s/Q + 1)\n\n"
":arg frequency: The cut off trequency of the lowpass.\n"
":type frequency: float\n"
":arg Q: Q factor of the lowpass.\n"
@@ -335,7 +335,7 @@ Factory_join(Factory* self, PyObject* object)
PyDoc_STRVAR(M_aud_Factory_highpass_doc,
"highpass(frequency, Q=0.5)\n\n"
"Creates a second order highpass filter based on the transfer "
- "function H(s) = s^2 / (s^2 + s/Q + 1)"
+ "function H(s) = s^2 / (s^2 + s/Q + 1)\n\n"
":arg frequency: The cut off trequency of the highpass.\n"
":type frequency: float\n"
":arg Q: Q factor of the lowpass.\n"