Description
Currently the reference is seeded by importing reference entries, description text, and cross-references from the Python mode.
However, Python mode contains many Python-specific reference entries which are not in the Processing(Java) API, and which will not be in Python.R. For example:
- dict_items
- dict_iteritems
- dict_keys
- dict_update
- dict_values
- dictionary
70009bc#diff-67374dee80d03cf169846122755bef45
Some python-specific entries include:
- Composite
tuple
,dictionary
,string
- Dictionary Methods
- List Methods
- List Functions
- String Methods
https://processing-r.github.io/Processing.R-docs/
These need to be removed -- either through an ignore list for the automatic import script, or, if the import was one-time-only, then manually removed (along with any cross-references).
Note however that if there ever is a re-import then we have to clean all over again, so an ignore list (processed by either the import script or a cleanup removal script) might be better approach than a manual cleanup commit.