Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address review: beautify xkcd link
  • Loading branch information
Erlend E. Aasland committed Apr 14, 2021
commit ade4fdd9b3a11ba0d44790f3f8b625c793061b88
3 changes: 2 additions & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ This example uses the iterator form::
Usually your SQL operations will need to use values from Python variables. You
shouldn't assemble your query using Python's string operations because doing so
is insecure; it makes your program vulnerable to an SQL injection attack
(see https://xkcd.com/327/ for a humorous example of what can go wrong)::
(see the `xkcd webcomic <https://xkcd.com/327/>`_ for a humorous example of
what can go wrong)::

# Never do this -- insecure!
symbol = 'RHAT'
Expand Down