diff options
| author | Tim Graham <timograham@gmail.com> | 2017-01-19 13:19:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-19 13:19:26 -0500 |
| commit | 9d27478958b50f2f689a103e39bf998fe7486675 (patch) | |
| tree | e59523137fa852430f4c80ef765f43b1f2d109a3 /docs/intro/tutorial02.txt | |
| parent | 9e917cc29181ad32abc21488ee70e739ce805f3a (diff) | |
Refs #23919 -- Removed docs references to long integers.
Diffstat (limited to 'docs/intro/tutorial02.txt')
| -rw-r--r-- | docs/intro/tutorial02.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index f7bf850309..48e4ac7e7d 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -421,10 +421,7 @@ Once you're in the shell, explore the :doc:`database API </topics/db/queries>`:: # Save the object into the database. You have to call save() explicitly. >>> q.save() - # Now it has an ID. Note that this might say "1L" instead of "1", depending - # on which database you're using. That's no biggie; it just means your - # database backend prefers to return integers as Python long integer - # objects. + # Now it has an ID. >>> q.id 1 |
