summaryrefslogtreecommitdiffstats
path: root/Python/future.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-03-25 20:22:59 (GMT)
committerFred Drake <fdrake@acm.org>2002-03-25 20:22:59 (GMT)
commit57f8e06e4f797abe4d2cbb41a298c5541f69b7f6 (patch)
treea5b4ff360f0905da76e635929ba94f489260d69b /Python/future.c
parent6a1e76b2bd93529baf46578f9fa5d9bb7f9df046 (diff)
downloadcpython-57f8e06e4f797abe4d2cbb41a298c5541f69b7f6.zip
cpython-57f8e06e4f797abe4d2cbb41a298c5541f69b7f6.tar.gz
cpython-57f8e06e4f797abe4d2cbb41a298c5541f69b7f6.tar.bz2
Document the finditer() function and method.
This closes SF bug #520904. Explain that many of the escapes supported by string literals are also supported by the RE compiler, and list which ones. This closes SF bug #529923.
Diffstat (limited to 'Python/future.c')
0 files changed, 0 insertions, 0 deletions
ckage. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] class MyScriptableObject: public QObject, protected QScriptable { Q_OBJECT ... public slots: void doSomething(); double doSomethingElse(); } //! [0] //! [1] void MyScriptableObject::doSomething() { context()->throwError("Threw an error from a slot"); } double MyScriptableObject::doSomethingElse() { return qscriptvalue_cast<double>(thisObject()); } //! [1]