]> 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/class_methods_new_line.py b/tests/data/class_methods_new_line.py
deleted file mode 100644 (file)
index 9a96ffe..0000000
+++ /dev/null
@@ -1,270 +0,0 @@
-class ClassSimplest:
-    pass
-class ClassWithSingleField:
-    a = 1
-class ClassWithJustTheDocstring:
-    """Just a docstring."""
-class ClassWithInit:
-    def __init__(self):
-        pass
-class ClassWithTheDocstringAndInit:
-    """Just a docstring."""
-    def __init__(self):
-        pass
-class ClassWithInitAndVars:
-    cls_var = 100
-    def __init__(self):
-        pass
-class ClassWithInitAndVarsAndDocstring:
-    """Test class"""
-    cls_var = 100
-    def __init__(self):
-        pass
-class ClassWithDecoInit:
-    @deco
-    def __init__(self):
-        pass
-class ClassWithDecoInitAndVars:
-    cls_var = 100
-    @deco
-    def __init__(self):
-        pass
-class ClassWithDecoInitAndVarsAndDocstring:
-    """Test class"""
-    cls_var = 100
-    @deco
-    def __init__(self):
-        pass
-class ClassSimplestWithInner:
-    class Inner:
-        pass
-class ClassSimplestWithInnerWithDocstring:
-    class Inner:
-        """Just a docstring."""
-        def __init__(self):
-            pass
-class ClassWithSingleFieldWithInner:
-    a = 1
-    class Inner:
-        pass
-class ClassWithJustTheDocstringWithInner:
-    """Just a docstring."""
-    class Inner:
-        pass
-class ClassWithInitWithInner:
-    class Inner:
-        pass
-    def __init__(self):
-        pass
-class ClassWithInitAndVarsWithInner:
-    cls_var = 100
-    class Inner:
-        pass
-    def __init__(self):
-        pass
-class ClassWithInitAndVarsAndDocstringWithInner:
-    """Test class"""
-    cls_var = 100
-    class Inner:
-        pass
-    def __init__(self):
-        pass
-class ClassWithDecoInitWithInner:
-    class Inner:
-        pass
-    @deco
-    def __init__(self):
-        pass
-class ClassWithDecoInitAndVarsWithInner:
-    cls_var = 100
-    class Inner:
-        pass
-    @deco
-    def __init__(self):
-        pass
-class ClassWithDecoInitAndVarsAndDocstringWithInner:
-    """Test class"""
-    cls_var = 100
-    class Inner:
-        pass
-    @deco
-    def __init__(self):
-        pass
-class ClassWithDecoInitAndVarsAndDocstringWithInner2:
-    """Test class"""
-    class Inner:
-        pass
-    cls_var = 100
-    @deco
-    def __init__(self):
-        pass
-
-
-# output
-
-
-class ClassSimplest:
-    pass
-
-
-class ClassWithSingleField:
-    a = 1
-
-
-class ClassWithJustTheDocstring:
-    """Just a docstring."""
-
-
-class ClassWithInit:
-    def __init__(self):
-        pass
-
-
-class ClassWithTheDocstringAndInit:
-    """Just a docstring."""
-
-    def __init__(self):
-        pass
-
-
-class ClassWithInitAndVars:
-    cls_var = 100
-
-    def __init__(self):
-        pass
-
-
-class ClassWithInitAndVarsAndDocstring:
-    """Test class"""
-
-    cls_var = 100
-
-    def __init__(self):
-        pass
-
-
-class ClassWithDecoInit:
-    @deco
-    def __init__(self):
-        pass
-
-
-class ClassWithDecoInitAndVars:
-    cls_var = 100
-
-    @deco
-    def __init__(self):
-        pass
-
-
-class ClassWithDecoInitAndVarsAndDocstring:
-    """Test class"""
-
-    cls_var = 100
-
-    @deco
-    def __init__(self):
-        pass
-
-
-class ClassSimplestWithInner:
-    class Inner:
-        pass
-
-
-class ClassSimplestWithInnerWithDocstring:
-    class Inner:
-        """Just a docstring."""
-
-        def __init__(self):
-            pass
-
-
-class ClassWithSingleFieldWithInner:
-    a = 1
-
-    class Inner:
-        pass
-
-
-class ClassWithJustTheDocstringWithInner:
-    """Just a docstring."""
-
-    class Inner:
-        pass
-
-
-class ClassWithInitWithInner:
-    class Inner:
-        pass
-
-    def __init__(self):
-        pass
-
-
-class ClassWithInitAndVarsWithInner:
-    cls_var = 100
-
-    class Inner:
-        pass
-
-    def __init__(self):
-        pass
-
-
-class ClassWithInitAndVarsAndDocstringWithInner:
-    """Test class"""
-
-    cls_var = 100
-
-    class Inner:
-        pass
-
-    def __init__(self):
-        pass
-
-
-class ClassWithDecoInitWithInner:
-    class Inner:
-        pass
-
-    @deco
-    def __init__(self):
-        pass
-
-
-class ClassWithDecoInitAndVarsWithInner:
-    cls_var = 100
-
-    class Inner:
-        pass
-
-    @deco
-    def __init__(self):
-        pass
-
-
-class ClassWithDecoInitAndVarsAndDocstringWithInner:
-    """Test class"""
-
-    cls_var = 100
-
-    class Inner:
-        pass
-
-    @deco
-    def __init__(self):
-        pass
-
-
-class ClassWithDecoInitAndVarsAndDocstringWithInner2:
-    """Test class"""
-
-    class Inner:
-        pass
-
-    cls_var = 100
-
-    @deco
-    def __init__(self):
-        pass