summaryrefslogtreecommitdiffstats
path: root/Python/pyarena.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-01-28 23:28:38 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-01-28 23:28:38 (GMT)
commit4dafd4075c363b2eb850653f3d562dd4afa739a1 (patch)
tree97526c37bb62d4dd93e0de16c50a22493e6028f3 /Python/pyarena.c
parenta4fdd599e25f703259c42c2b74d0a6316875bfcf (diff)
downloadcpython-4dafd4075c363b2eb850653f3d562dd4afa739a1.zip
cpython-4dafd4075c363b2eb850653f3d562dd4afa739a1.tar.gz
cpython-4dafd4075c363b2eb850653f3d562dd4afa739a1.tar.bz2
fix long fixer docs (#4590)
Diffstat (limited to 'Python/pyarena.c')
0 files changed, 0 insertions, 0 deletions
* 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] QSqlQueryModel model; model.setQuery("select * from myTable"); if (model.lastError().isValid()) qDebug() << model.lastError(); //! [0]