Kaydet (Commit) d1b25a64 authored tarafından Jon Dufresne's avatar Jon Dufresne Kaydeden (comit) Tim Graham

[2.1.x] Refs #27778 -- Removed "The database API" section from "Unicode data" docs.

Support for passing bytestrings to the database API was removed in
301de774.
Backport of f5d9ee11 from master
üst 9e5f4bce
......@@ -257,16 +257,6 @@ non-ASCII characters would have been removed in quoting in the first line.)
.. _above: `URI and IRI handling`_
The database API
================
You can pass either strings or UTF-8 bytestrings as arguments to
``filter()`` methods and the like in the database API. The following two
querysets are identical::
qs = People.objects.filter(name__contains='Å')
qs = People.objects.filter(name__contains=b'\xc3\x85') # UTF-8 encoding of Å
Templates
=========
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment