summaryrefslogtreecommitdiff
path: root/test/input/func_w0312.py
blob: 491f75bdfcefa8d7b8b76ccade91c38a303f6f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
"""test mixed tabs and spaces"""
from __future__ import print_function
__revision__ = 1

def spaces_func():
    """yo"""
    print("yo")

def tab_func():
	"""yo"""
	print("yo")