All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
5 from third_party import X, Y, Z
7 from library import some_connection, \
13 if True: raise RuntimeError
18 exec('new-style exec', {}, {})
20 async def coroutine(arg, exec=False):
21 'Single-line docstring. Multiline is harder to reformat.'
22 async with some_connection() as conn:
23 await conn.do_what_i_mean('SELECT bobby, tables FROM xkcd', timeout=2)
24 await asyncio.sleep(1)
30 def function_signature_stress_test(number:int,no_annotation=None,text:str='default',* ,debug:bool=False,**kwargs) -> str:
31 return text[number:-1]
33 def spaces(a=1, b=(), c=[], d={}, e=True, f=-1, g=1 if False else 2, h="", i=r''):
34 offset = attr.ib(default=attr.Factory( lambda: _r.uniform(10000, 200000)))
35 assert task._cancel_stack[:len(old_stack)] == old_stack
36 def spaces_types(a: int = 1, b: tuple = (), c: list = [], d: dict = {}, e: bool = True, f: int = -1, g: int = 1 if False else 2, h: str = "", i: str = r''): ...
37 def spaces2(result= _core.Value(None)):
42 .query(models.Customer.id)\
43 .filter(models.Customer.account_id == account_id,
44 models.Customer.email == email_address)\
45 .order_by(models.Customer.id.asc())\
51 gen_annotated_params(ast_args.kwonlyargs, ast_args.kw_defaults, parameters, implicit_default=True)
53 _type_comment_re = re.compile(
61 (?<!ignore) # note: this will force the non-greedy + in <type> to match
62 # a trailing space which is why we need the silliness below
63 (?<!ignore[ ]{1})(?<!ignore[ ]{2})(?<!ignore[ ]{3})(?<!ignore[ ]{4})
64 (?<!ignore[ ]{5})(?<!ignore[ ]{6})(?<!ignore[ ]{7})(?<!ignore[ ]{8})
65 (?<!ignore[ ]{9})(?<!ignore[ ]{10})
72 """, re.MULTILINE | re.VERBOSE
74 def single_literal_yapf_disable():
75 """Black does not support this."""
82 # No formatting to the end of the file
90 #!/usr/bin/env python3
94 from third_party import X, Y, Z
96 from library import some_connection, some_decorator
102 if True: raise RuntimeError
107 exec('new-style exec', {}, {})
109 async def coroutine(arg, exec=False):
110 'Single-line docstring. Multiline is harder to reformat.'
111 async with some_connection() as conn:
112 await conn.do_what_i_mean('SELECT bobby, tables FROM xkcd', timeout=2)
113 await asyncio.sleep(1)
119 def function_signature_stress_test(number:int,no_annotation=None,text:str='default',* ,debug:bool=False,**kwargs) -> str:
120 return text[number:-1]
124 def spaces(a=1, b=(), c=[], d={}, e=True, f=-1, g=1 if False else 2, h="", i=r""):
125 offset = attr.ib(default=attr.Factory(lambda: _r.uniform(10000, 200000)))
126 assert task._cancel_stack[:len(old_stack)] == old_stack
136 g: int = 1 if False else 2,
143 def spaces2(result=_core.Value(None)):
147 def example(session):
150 .query(models.Customer.id)\
151 .filter(models.Customer.account_id == account_id,
152 models.Customer.email == email_address)\
153 .order_by(models.Customer.id.asc())\
160 typedargslist.extend(
161 gen_annotated_params(
163 ast_args.kw_defaults,
165 implicit_default=True,
168 _type_comment_re = re.compile(
176 (?<!ignore) # note: this will force the non-greedy + in <type> to match
177 # a trailing space which is why we need the silliness below
178 (?<!ignore[ ]{1})(?<!ignore[ ]{2})(?<!ignore[ ]{3})(?<!ignore[ ]{4})
179 (?<!ignore[ ]{5})(?<!ignore[ ]{6})(?<!ignore[ ]{7})(?<!ignore[ ]{8})
180 (?<!ignore[ ]{9})(?<!ignore[ ]{10})
188 re.MULTILINE | re.VERBOSE,
192 def single_literal_yapf_disable():
193 """Black does not support this."""
194 BAZ = {(1, 2, 3, 4), (5, 6, 7, 8), (9, 10, 11, 12)} # yapf: disable
198 # No formatting to the end of the file