]> git.madduck.net Git - etc/vim.git/blobdiff - .vim/bundle/black/tests/data/static/git-favicon.png

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add '.vim/bundle/black/' from commit '2f3fa1f6d0cbc2a3f31c7440c422da173b068e7b'
[etc/vim.git] / .vim / bundle / black / tests / data / static / git-favicon.png
diff --git a/tests/data/pep_570.py b/tests/data/pep_570.py
deleted file mode 100644 (file)
index ca8f7ab..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-def positional_only_arg(a, /):
-    pass
-
-
-def all_markers(a, b, /, c, d, *, e, f):
-    pass
-
-
-def all_markers_with_args_and_kwargs(
-    a_long_one,
-    b_long_one,
-    /,
-    c_long_one,
-    d_long_one,
-    *args,
-    e_long_one,
-    f_long_one,
-    **kwargs,
-):
-    pass
-
-
-def all_markers_with_defaults(a, b=1, /, c=2, d=3, *, e=4, f=5):
-    pass
-
-
-def long_one_with_long_parameter_names(
-    but_all_of_them,
-    are_positional_only,
-    arguments_mmmmkay,
-    so_this_is_only_valid_after,
-    three_point_eight,
-    /,
-):
-    pass
-
-
-lambda a, /: a
-
-lambda a, b, /, c, d, *, e, f: a
-
-lambda a, b, /, c, d, *args, e, f, **kwargs: args
-
-lambda a, b=1, /, c=2, d=3, *, e=4, f=5: 1