Giter Site home page Giter Site logo

Crash with simple f-string about pydocstyle HOT 7 OPEN

kasium avatar kasium commented on August 26, 2024
Crash with simple f-string

from pydocstyle.

Comments (7)

sigmavirus24 avatar sigmavirus24 commented on August 26, 2024

Is that the only code in the file? Pydocstyle works fine with f strings on all of my projects.

Further, the error is coming from the standard-library ast parsing library. That means it's not valid python and it wouldn't run anyway so this falls under the principle of

"Garbage in, garbage out"

from pydocstyle.

kasium avatar kasium commented on August 26, 2024

@sigmavirus24 I drilled it down to that code. And python foo.py returns no error, so it's valid python. You are right, it's from the stdlib but it seems that pydocstyle passes something wrong to literal_eval

from pydocstyle.

kasium avatar kasium commented on August 26, 2024

@sigmavirus24 the issue is in pydocstyle/checker.py check_docstring_empty. It passes the whole code to ast.literal_eval which is not valid, because literal_eval cannot handled f-strings. I'm happy to open a PR if you want

from pydocstyle.

sigmavirus24 avatar sigmavirus24 commented on August 26, 2024

@kasium you misunderstand me. f-strings cannot be documentation strings. Docstrings must be string literals. In other words, pydocstyle has every right - when it encounters something that appears to be a docstring - to attempt to use ast.literal_eval.

A file that has a string and only a string in it, would appear to have a docstring. That docstring being an f-string means that it's a garbage file since f-strings cannot be docstrings.

I think it makes sense that we attempt to catch this and report an error but I don't think the tool is doing anything other than exposing an exception to the user.

from pydocstyle.

kasium avatar kasium commented on August 26, 2024

@sigmavirus24 I just found #381. Not sure about the process but I'm willing to pick it up since there is no progress since 2020.
I guess a new PR makes sense, right?

from pydocstyle.

sigmavirus24 avatar sigmavirus24 commented on August 26, 2024

@kasium yes, I think that does make sense. There is some significant review there though about a better way to implement that, so don't feel too attached to what's there if it turns out to slow you down

from pydocstyle.

kasium avatar kasium commented on August 26, 2024

Okay, let me read it and create a new PR to start with a fresh base. Thanks for your timely answers !

from pydocstyle.

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.