Staging
v0.5.1
https://github.com/python/cpython
Revision 6979fcdc91114b1ccb16345e26734d6df4cccbc3 authored by Victor Stinner on 28 November 2017, 22:04:12 UTC, committed by GitHub on 28 November 2017, 22:04:12 UTC
* turtledemo: wait until macOS osascript command completes to not
  create a zombie process
* Tools/scripts/treesync.py: declare 'default_answer' and
  'create_files' as globals to modify them with the command line
  arguments. Previously, -y, -n, -f and -a options had no effect.

flake8 warning: "F841 local variable 'p' is assigned to but never
used".
1 parent 5f6d2bb
Raw File
Tip revision: 6979fcdc91114b1ccb16345e26734d6df4cccbc3 authored by Victor Stinner on 28 November 2017, 22:04:12 UTC
bpo-32155: Bugfixes found by flake8 F841 warnings (#4619)
Tip revision: 6979fcd
pyclbr_input.py
"""Test cases for test_pyclbr.py"""

def f(): pass

class Other(object):
    @classmethod
    def foo(c): pass

    def om(self): pass

class B (object):
    def bm(self): pass

class C (B):
    foo = Other().foo
    om = Other.om

    d = 10

    # XXX: This causes test_pyclbr.py to fail, but only because the
    #      introspection-based is_method() code in the test can't
    #      distinguish between this and a genuine method function like m().
    #      The pyclbr.py module gets this right as it parses the text.
    #
    #f = f

    def m(self): pass

    @staticmethod
    def sm(self): pass

    @classmethod
    def cm(self): pass
back to top