Skip to content
Gui Talarico edited this page Sep 18, 2017 · 16 revisions

Why Stubs

When using IronPython with modules loaded through the Common Language Runtime (clr), the autocomplete engine which runs on regular python, cannot access those non-native modules.

The strategy here is simple: Use IronPython to crawl through these libraries, and create 'stubs' or 'mock object' Those 'stubs' can then be used by the CPython autocomplete engine.

This repository contains the code to create these stubs, and also stores an a version of them that can be used by autocomplete-python.

Setup your Editor

Clone this wiki locally