blob: e871bb26aa945bf9924540e249d258a2c6ad7b34 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
|
"""test unused variable
"""
# pylint: disable=invalid-name, redefined-outer-name
__revision__ = 0
PATH = OS = collections = deque = None
def function(matches):
""""yo"""
aaaa = 1
index = -1
for match in matches:
index += 1
print match
def visit_if(self, node):
"""increments the branches counter"""
branches = 1
# don't double count If nodes coming from some 'elif'
if node.orelse and len(node.orelse) > 1:
branches += 1
self.inc_branch(branches)
self.stmts += branches
def test_global():
""" Test various assignments of global
variables through imports.
"""
global PATH, OS, collections, deque
from os import path as PATH
import os as OS
import collections
from collections import deque
# make sure that these triggers unused-variable
from sys import platform
from sys import version as VERSION
import this
import re as RE
|