home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / !!!python!!! / BeOpen-Python-2.0.exe / README.TXT < prev    next >
Encoding:
Text File  |  2000-02-15  |  1.7 KB  |  53 lines

  1. IDLE 0.5 - February 2000
  2. ------------------------
  3.  
  4. This is an early release of IDLE, my own attempt at a Tkinter-based
  5. IDE for Python.
  6.  
  7. For news about this release, see the file NEWS.txt.  (For a more
  8. detailed change log, see the file ChangeLog.)
  9.  
  10. FEATURES
  11.  
  12. IDLE has the following features:
  13.  
  14. - coded in 100% pure Python, using the Tkinter GUI toolkit (i.e. Tcl/Tk)
  15.  
  16. - cross-platform: works on Windows and Unix (on the Mac, there are
  17. currently problems with Tcl/Tk)
  18.  
  19. - multi-window text editor with multiple undo, Python colorizing
  20. and many other features, e.g. smart indent and call tips
  21.  
  22. - Python shell window (a.k.a. interactive interpreter)
  23.  
  24. - debugger (not complete, but you can set breakpoints, view  and step)
  25.  
  26. USAGE
  27.  
  28. The main program is in the file "idle.py"; on Unix, you should be able
  29. to run it by typing "./idle.py" to your shell.  On Windows, you can
  30. run it by double-clicking it; you can use idle.pyw to avoid popping up
  31. a DOS console.  If you want to pass command line arguments on Windows,
  32. use the batch file idle.bat.
  33.  
  34. Command line arguments: files passed on the command line are executed,
  35. not opened for editing, unless you give the -e command line option.
  36. Try "./idle.py -h" to see other command line options.
  37.  
  38. IDLE requires Python 1.5.2, so it is currently only usable with a
  39. Python 1.5.2 distribution.  (An older version of IDLE is distributed
  40. with Python 1.5.2; you can drop this version on top of it.)
  41.  
  42. COPYRIGHT
  43.  
  44. IDLE is covered by the standard Python copyright notice
  45. (http://www.python.org/doc/Copyright.html).
  46.  
  47. FEEDBACK
  48.  
  49. For feedback, please use the Python Bugs List
  50. (http://www.python.org/search/search_bugs.html).
  51.  
  52. --Guido van Rossum (home page: http://www.python.org/~guido/)
  53.