File: github_linkcode_module.py

package info (click to toggle)
beanbag-docutils 2.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 488 kB
  • sloc: python: 2,690; makefile: 202; sh: 8
file content (27 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (3)
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
# NOTE: The line numbers in this file matters for tests.
from collections import namedtuple


class ClassA(object):
    pass


class ClassB(object):
    """Docstring here."""

    my_var = True

    def __init__(self):
        pass

    def do_thing(self, a, b):
        pass


def my_func():
    pass


my_var = ClassB

MyNamedTuple = namedtuple('MyNamedTuple', ('a', 'b', 'c'))