diff options
author | Patrick <patrick.dobbs@supplierselect.com> | 2016-03-30 21:45:40 +0100 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-30 17:01:21 -0400 |
commit | fb7e141abd7e88276244383773515404b1567ec0 (patch) | |
tree | 9424759fc028791f0e52d342262f84661f643add | |
parent | c30fa88d867b85ef653c53a7b13880078016e544 (diff) | |
download | sqlalchemy-fb7e141abd7e88276244383773515404b1567ec0.tar.gz |
Docstring Fix
Change the docstring in short_selects example to match the code
(cherry picked from commit 4a3205df84b737f5fe55914fe22eef7264f20764)
-rw-r--r-- | examples/performance/short_selects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/performance/short_selects.py b/examples/performance/short_selects.py index ef1fcff4a..6f64aa63e 100644 --- a/examples/performance/short_selects.py +++ b/examples/performance/short_selects.py @@ -1,5 +1,5 @@ -"""This series of tests illustrates different ways to INSERT a large number -of rows in bulk. +"""This series of tests illustrates different ways to SELECT a single +record by primary key """ |