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. -- http://mail.python.org/mailman/listinfo/python-list