Skip to main content

add static type information to Python abstract syntax trees

Project description

package version from PyPI build status from Travis CI build status from AppVeyor grade from Codacy test coverage from Codecov license

Attempt to add static type information to Python abstract syntax trees (ASTs).

Works best with ASTs from typed_ast module, however it also works with built-in ast module.

Be advised that this is an ongoing work, and current implementation is subject to sudden changes.

How to use

You can use the static_typing module to parse the code directly using parse() function:

import static_typing as st
class MyClass:
    pass
module = st.parse('def my_fun(obj: MyClass) -> MyClass: return obj')
# TODO: currently there is no public API yet
functions = module._functions
my_fun = module._functions['my_fun']
assert MyClass in my_fun._params['obj']

Or, you can augment existing AST using augment() function:

import static_typing as st
import typed_ast.ast3
module = typed_ast.ast3.parse('''def spam(): x, y, z = 'ham', 42, 3.1415  # type: str, int, float''')
module = st.augment(module)
# TODO: currently there is no public API yet
function = module._functions['spam']
assert len(function._local_vars) == 3
assert float in function._local_vars['z']

For more examples see examples.ipynb notebook.

AST manipulation

Additionally to the main features, the library contains static_typing.ast_manipulation module which contains low-level tools and building blocks allowing for:

  • recursive AST traversal,

  • AST validation,

  • recursive AST transformations,

  • AST transcribing (from typed_ast to built-in ast and vice versa) and

  • resolving type hints (described in detail below).

How it’s implemented

The process or static typing, which the augment() function implements, has 3 main steps:

  • type hint resolution,

  • type information combining and

  • AST rewriting.

Type hint resolution

In all applicable nodes, type hints are stored in fields type_comment, annotation and returns. The type hint resolver reads those fields – which themseves are either raw strings or ASTs.

It uses provided Python symbol tables to resolve type hints into actual type objects using introspection.

By default, the resolver uses only built-in symbols when called directly or through augment(). However, when called through parse() it uses globals() and locals() of the caller by default.

The resolved type hints are stored directly in the AST. Specifically, each resolved field is stored in a correspondingly named field, which is either resolved_type_comment, resolved_annotation or resolved_returns.

Thus, static type information becomes available in the AST.

Type information combining

For each AST node that might contain any name declarations, an exetended version of a node is provided. Each extended AST node has new fields that store those declared names and type information associated with each name.

These new fields store all type information from all resolved type hints within any local scope, so that a type conflict or lack of type information can be detected. Also, based on this combined information, type inference can be performed.

Specifically, new versions of following AST nodes with new fields are provided: Module, FunctionDef, ClassDef, Assign, AnnAssign, For and With. Those new versions have their names prefixed StaticallyTyped....

A list of entities for which information is gathered in those new fields follows.

For Module:

  • defined variables

  • defined functions

  • defined classes

For FunctionDef:

  • parameters and their types

  • return types

  • kind (i.e. function, instance method, class method, static method, etc.)

  • local variables and their types

For ClassDef:

  • defined methods (all together and grouped by kind)

  • class fields and their types

  • instance fields and their types

For Assign and AnnAssign:

  • assignment targets and their types

For For:

  • index variables and their types

For With:

  • context variables and their types

AST rewriting

The AST rewriting means replacing ordinary AST nodes listed above with their extended versions.

Requirements

Python version >= 3.4.

Python libraries as specified in requirements.txt.

Building and running tests additionally requires packages listed in test_requirements.txt.

Tested on Linux and Windows.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

static-typing-0.2.7.dev1.tar.gz (38.6 kB view details)

Uploaded Source

Built Distribution

static_typing-0.2.7.dev1-py3-none-any.whl (32.4 kB view details)

Uploaded Python 3

File details

Details for the file static-typing-0.2.7.dev1.tar.gz.

File metadata

  • Download URL: static-typing-0.2.7.dev1.tar.gz
  • Upload date:
  • Size: 38.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for static-typing-0.2.7.dev1.tar.gz
Algorithm Hash digest
SHA256 a985135b1e70af5a12716c9db101fbd9dabcbe14c580563b0ee701f162cd6432
MD5 b50f653e36dbac1d9e80e2b7ec72cb9a
BLAKE2b-256 bc69b22e4e8a639077ef5e03ee361877bc18e7b646996217a6df639a79ff46d8

See more details on using hashes here.

File details

Details for the file static_typing-0.2.7.dev1-py3-none-any.whl.

File metadata

  • Download URL: static_typing-0.2.7.dev1-py3-none-any.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8

File hashes

Hashes for static_typing-0.2.7.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 8b0871dc3b7f93704c09fa3e87052303197074f347b96597a8d2bc258ed4ad67
MD5 a583523d42eec36dbbd0ed51c2a527a9
BLAKE2b-256 3c5408a1ce31a65b0499c6ad4d5d54dac945a04a9834a5c895dbc7d61114da67

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page