Python Editor with Autocorrection

Ravi Teja webraviteja at gmail.com
Mon Aug 21 23:23:54 EDT 2006


Laurentiu wrote:
> hello!
>
>
> i am searching for a free python editor with
> autocorrection capabillities.
>
> for example:" the wrong setfocus() call to become
> SetFocus(), etc."
>
>
> thanks

Python is a dynamic language, which means that methods that may not
exist in your source code may spring to being at runtime at any point.
So it may be undesirable to have such feature. (For example, take a
look at an XML binding tool such as Amara which creates objects at
runtime after parsing an XML file).

Most good editors (Scintilla based editors, Emacs, Vi etc) have
auto-completion for symbols that have occured in the current file; and
some advanced IDEs (PyDev, WingIDE, SPE, Komodo etc) will auto-complete
to some degree based on your imports through static analysis.




More information about the Python-list mailing list