GithubHelp home page GithubHelp logo

Comments (3)

wolph avatar wolph commented on August 26, 2024

I didn't know about py.typed either, that's news to me :)
In any case, good idea. I'll add it to this library (and possibly a few others as well).

Due to the fragile nature of apple hardware my laptop is currently out of commission unfortunately, and that's the only system I've completely setup to properly create new releases with signing and everything so it'll probably take a few weeks until I can create a new release.

from portalocker.

BoniLindsley avatar BoniLindsley commented on August 26, 2024

Thank you for adding this! Now I can have this in some commits!

-import portalocker  # type: ignore[import]
+import portalocker

There is one tinsy little issue I ran into when using the type hint -- the exception base class is not type hinted. I think the following is sufficient to type hint it:

+import typing
+
+
class BaseLockException(Exception):
    # Error codes:
    LOCK_FAILED = 1

-    def __init__(self, *args, fh=None, **kwargs):
+    def __init__(
+        self,
+        *args: typing.Any,
+        fh: typing.Optional[typing.IO] = None,
+        **kwargs: typing.Any,
+    ) -> None:
        self.fh = fh
        Exception.__init__(self, *args, **kwargs)

That was the only one I ran into directly. Checking the package shows a few untyped functions. These are in utils though, so I am guessing these probably do not matter much for the users.

There are also two in the redis module, but I do not know enough about it to suggest anything, and the redis-py package does not seem to have type hints anyway.

from portalocker.

wolph avatar wolph commented on August 26, 2024

I completely forgot to reply to this... obviously we've already had a few releases so it's definitely included but it's certainly not perfect yet. I've improved the type hints somewhat but I'm not at 100% coverage yet

Perhaps some day :)

Thank you for all the help @BoniLindsley!

from portalocker.

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.