Coder Social home page Coder Social logo

Comments (1)

andykee avatar andykee commented on August 15, 2024

I've done some more research on this:

  • Sphinx offers docstring preprocessing that seemed promising, but it doesn't appear that it's possible to modify the type of each detected object.

  • I also looked into trying to spoof the type of cached_property, which isn't promising.

Unfortunately, I think the only way to do this is to use the property() function definition for the class attributes that are currently defined as "cached properties". For Plane.phase, it would look something like this:

class Plane:
    def __init__(self, phase=0, ...):
        self._phase = np.asarray(phase)
        ...
    
    @property
    def phase(self):
        if self.cache.get('phase') is not None:
            return self.cache.get('phase')
        else:
            return self._phase

    @phase.setter
    def phase(self, value):
        self.cache.delete('phase')
            if value is not None:
                self._phase = np.asarray(value)
            else:
                self._phase = None

This will eliminate the use of the cached_property decorator in the code, but it will still be useful when users subclass Plane and define custom phase attributes.

from lentil.

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.