File: python39.py

package info (click to toggle)
black 25.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,180 kB
  • sloc: python: 113,389; makefile: 25
file content (28 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@relaxed_decorator[0]
def f():
    ...

@relaxed_decorator[extremely_long_name_that_definitely_will_not_fit_on_one_line_of_standard_length]
def f():
    ...

@extremely_long_variable_name_that_doesnt_fit := complex.expression(with_long="arguments_value_that_wont_fit_at_the_end_of_the_line")
def f():
    ...

# output

@relaxed_decorator[0]
def f(): ...


@relaxed_decorator[
    extremely_long_name_that_definitely_will_not_fit_on_one_line_of_standard_length
]
def f(): ...


@extremely_long_variable_name_that_doesnt_fit := complex.expression(
    with_long="arguments_value_that_wont_fit_at_the_end_of_the_line"
)
def f(): ...