From: Denis Laxalde Date: Sat, 26 Jul 2025 16:02:46 +0000 (+0200) Subject: Fix rendering of a SQL example in indexable examples (#12751) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fc2debe97ed74a497fea0c8b1c56ef212e8a4968;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix rendering of a SQL example in indexable examples (#12751) --- diff --git a/lib/sqlalchemy/ext/indexable.py b/lib/sqlalchemy/ext/indexable.py index 886069ce00..883d974207 100644 --- a/lib/sqlalchemy/ext/indexable.py +++ b/lib/sqlalchemy/ext/indexable.py @@ -216,6 +216,7 @@ for indexed access, instead of the usual index operator of ``->``:: >>> query = session.query(Person).filter(Person.age < 20) The above query will render: + .. sourcecode:: sql SELECT person.id, person.data