GithubHelp home page GithubHelp logo

Comments (3)

rogerbinns avatar rogerbinns commented on June 4, 2024

To use type annotations you have to do what it says at the top of the file, specifically:

 from __future__ import annotations

from apsw.

matrey avatar matrey commented on June 4, 2024

Ah yeah indeed, sorry.
I found the type definition in __init__ which is why I thought it might be a bug / regression.
But it is __init__.pyi, not __init__.py

from apsw.

rogerbinns avatar rogerbinns commented on June 4, 2024

Apologies for getting mixed up in this. I've updated the comments to make it clear that future import annotations is mandatory. If you make only that change then everything will be fine and all tools that deal with typing including mypy and language servers, vscode etc will do the right thing.

The import postpones evaluation of annotations (PEP 563). As you noticed SQLiteValues and several other types aren't real, and are there to help type checkers. The core of APSW is implemented in C which is why they aren't real. They are intentionally provided in the corresponding .pyi file - known as type stubs - PEP 561.

All this typing stuff is fairly messy behind the scenes. But you should experience a convenient and smooth experience using them, and if not then that is a bug.

from apsw.

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.