summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorLily Foote <python@ian.feete.org>2023-05-10 08:26:25 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-10 08:26:25 +0200
commitc494c6974dd0e7c5a43ea3e220b34641abc3ba29 (patch)
tree44f8ecb0b4665914842d9403681e0b26f4bf326c /django
parent92f0017133c2d31fbd527bab7b08d4d49a582143 (diff)
downloaddjango-c494c6974dd0e7c5a43ea3e220b34641abc3ba29.tar.gz
Removed obsolete docstring from Field.db_returning.
It's also supported on SQLite 3.35+ and MariaDB 10.5+.
Diffstat (limited to 'django')
-rw-r--r--django/db/models/fields/__init__.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py
index 7ea2fd59aa..4416898d80 100644
--- a/django/db/models/fields/__init__.py
+++ b/django/db/models/fields/__init__.py
@@ -875,10 +875,7 @@ class Field(RegisterLookupMixin):
@property
def db_returning(self):
- """
- Private API intended only to be used by Django itself. Currently only
- the PostgreSQL backend supports returning multiple fields on a model.
- """
+ """Private API intended only to be used by Django itself."""
return False
def set_attributes_from_name(self, name):