Giter VIP home page Giter VIP logo

Comments (2)

cclauss avatar cclauss commented on June 15, 2024

flake8 testing of https://github.com/michaelliao/learn-python3 on Python 3.7.1

$ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics

./samples/commonlib/use_urllib.py:53:17: F821 undefined name 'urllib'
proxy_handler = urllib.request.ProxyHandler({'http': 'http://www.example.com:3128/'})
                ^
./samples/commonlib/use_urllib.py:54:22: F821 undefined name 'urllib'
proxy_auth_handler = urllib.request.ProxyBasicAuthHandler()
                     ^
./samples/commonlib/use_urllib.py:56:10: F821 undefined name 'urllib'
opener = urllib.request.build_opener(proxy_handler, proxy_auth_handler)
         ^
./samples/multitask/task_worker.py:33:12: F821 undefined name 'Queue'
    except Queue.Empty:
           ^
4     F821 undefined name 'urllib'
4

E901,E999,F821,F822,F823 are the "showstopper" flake8 issues that can halt the runtime with a SyntaxError, NameError, etc. These 5 are different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.

  • F821: undefined name name
  • F822: undefined name name in __all__
  • F823: local variable name referenced before assignment
  • E901: SyntaxError or IndentationError
  • E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree

from learn-python3.

cclauss avatar cclauss commented on June 15, 2024

Bump on this one.

from learn-python3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.