xref
: /
aosp_15_r20
/
external
/
python
/
setuptools
/
setuptools
/
tests
/
textwrap.py
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
import
textwrap
2
3
4
def
DALS
(
s
):
5
"dedent and left-strip"
6
return
textwrap
.
dedent
(
s
).
lstrip
()
7