home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / pythonwin / python.exe / NEWS.TXT < prev    next >
Encoding:
Text File  |  2003-09-23  |  12.8 KB  |  325 lines

  1. What's New in IDLE 1.0.1?
  2. ===================================
  3.  
  4. *Release date: 23-Sep-2003*
  5.  
  6. - IDLE didn't start correctly when Python was installed in "Program Files" on
  7.   W2K and XP.  Python Bugs 780451, 784183
  8.  
  9. - config-main.def documentation incorrectly referred to idle- instead of 
  10.   config-  filenames.  SF 782759  Also added note about .idlerc location.
  11.  
  12. What's New in IDLE 1.0?
  13. ===================================
  14.  
  15. *Release date: 29-Jul-2003*
  16.  
  17. - Added a banner to the shell discussimg warnings possibly raised by personal
  18.   firewall software.  Added same comment to README.txt.
  19.  
  20.  
  21. What's New in IDLE 1.0 release candidate 2?
  22. ===================================
  23.  
  24. *Release date: 24-Jul-2003*
  25.  
  26. - Calltip error when docstring was None  Python Bug 775541
  27.  
  28.  
  29. What's New in IDLE 1.0 release candidate 1?
  30. ===================================
  31.  
  32. *Release date: 18-Jul-2003*
  33.  
  34. - Updated extend.txt, help.txt, and config-extensions.def to correctly
  35.   reflect the current status of the configuration system.  Python Bug 768469
  36.  
  37. - Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
  38.  
  39. - Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
  40.   Python Patch 768187
  41.  
  42. - Break or continue statements outside a loop were causing IDLE crash
  43.   Python Bug 767794
  44.  
  45. - Convert Unicode strings from readline to IOBinding.encoding.  Also set
  46.   sys.std{in|out|err}.encoding, for both the local and the subprocess case.
  47.   SF IDLEfork patch 682347.
  48.  
  49.  
  50. What's New in IDLE 1.0b2?
  51. ===================================
  52.  
  53. *Release date: 29-Jun-2003*
  54.  
  55. - (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
  56.   IDLEfork modified to install in the Python environment.  The code in the
  57.   interrupt module has been moved to thread.interrupt_main(). )
  58.  
  59. - Printing the Shell window was failing if it was not saved first SF 748975
  60.  
  61. - When using the Search in Files dialog, if the user had a selection
  62.   highlighted in his Editor window, insert it into the dialog search field.
  63.  
  64. - The Python Shell entry was disappearing from the Windows menu.
  65.  
  66. - Update the Windows file list when a file name change occurs
  67.  
  68. - Change to File / Open Module: always pop up the dialog, using the current
  69.   selection as the default value.  This is easier to use habitually.
  70.  
  71. - Avoided a problem with starting the subprocess when 'localhost' doesn't
  72.   resolve to the user's loopback interface.  SF 747772
  73.  
  74. - Fixed an issue with highlighted errors never de-colorizing.  SF 747677.  Also
  75.   improved notification of Tabnanny Token Error.
  76.  
  77. - File / New will by default save in the directory of the Edit window from
  78.   which it was initiated.  SF 748973 Guido van Rossum patch.
  79.  
  80.  
  81. What's New in IDLEfork 0.9b1?
  82. ===================================
  83.  
  84. *Release date: 02-Jun-2003*
  85.  
  86. - The current working directory of the execution environment (and shell
  87.   following completion of execution) is now that of the module being run. 
  88.  
  89. - Added the delete-exitfunc option to config-main.def.  (This option is not
  90.   included in the Options dialog.)  Setting this to True (the default) will
  91.   cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
  92.  
  93. - IDLE now preserves the line ending codes when editing a file produced on
  94.   a different platform. SF 661759,  SF 538584
  95.  
  96. - Reduced default editor font size to 10 point and increased window height
  97.   to provide a better initial impression on Windows.
  98.  
  99. - Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
  100.   the default font when first installed on Windows.  SF 661676
  101.  
  102. - Added Autosave feature: when user runs code from edit window, if the file
  103.   has been modified IDLE will silently save it if Autosave is enabled.  The
  104.   option is set in the Options dialog, and the default is to prompt the
  105.   user to save the file.   SF 661318 Bruce Sherwood patch.
  106.  
  107. - Improved the RESTART annotation in the shell window when the user restarts
  108.   the shell while it is generating output.  Also improved annotation when user
  109.   repeatedly hammers the Ctrl-F6 restart.
  110.  
  111. - Allow IDLE to run when not installed and cwd is not the IDLE directory
  112.   SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
  113.  
  114. - When a module is run from an EditorWindow: if its directory is not in
  115.   sys.path, prepend it.  This allows the module to import other modules in
  116.   the same directory.  Do the same for a script run from the command line.
  117.  
  118. - Correctly restart the subprocess if it is running user code and the user
  119.   attempts to run some other module or restarts the shell.  Do the same if
  120.   the link is broken and it is possible to restart the subprocess and re-
  121.   connect to the GUI.   SF RFE 661321.
  122.  
  123. - Improved exception reporting when running commands or scripts from the
  124.   command line.
  125.  
  126. - Added a -n command line switch to start IDLE without the subprocess.
  127.   Removed the Shell menu when running in that mode.  Updated help messages.
  128.  
  129. - Added a comment to the shell startup header to indicate when IDLE is not
  130.   using the subprocess.
  131.  
  132. - Restore the ability to run without the subprocess.  This can be important for
  133.   some platforms or configurations.  (Running without the subprocess allows the
  134.   debugger to trace through parts of IDLE itself, which may or may not be
  135.   desirable, depending on your point of view.  In addition, the traditional
  136.   reload/import tricks must be use if user source code is changed.)  This is
  137.   helpful for developing IDLE using IDLE, because one instance can be used to
  138.   edit the code and a separate instance run to test changes.  (Multiple
  139.   concurrent IDLE instances with subprocesses is a future feature)
  140.  
  141. - Improve the error message a user gets when saving a file with non-ASCII
  142.   characters and no source encoding is specified.  Done by adding a dialog
  143.   'EncodingMessage', which contains the line to add in a fixed-font entry
  144.   widget, and which has a button to add that line to the file automatically.
  145.   Also, add a configuration option 'EditorWindow/encoding', which has three
  146.   possible values: none, utf-8, and locale. None is the default: IDLE will show
  147.   this dialog when non-ASCII characters are encountered. utf-8 means that files
  148.   with non-ASCII characters are saved as utf-8-with-bom. locale means that
  149.   files are saved in the locale's encoding; the dialog is only displayed if the
  150.   source contains characters outside the locale's charset.  SF 710733 - Loewis
  151.  
  152. - Improved I/O response by tweaking the wait parameter in various
  153.   calls to signal.signal().
  154.  
  155. - Implemented a threaded subprocess which allows interrupting a pass 
  156.   loop in user code using the 'interrupt' extension.  User code runs
  157.   in MainThread, while the RPCServer is handled by SockThread.  This is
  158.   necessary because Windows doesn't support signals.
  159.  
  160. - Implemented the 'interrupt' extension module, which allows a subthread
  161.   to raise a KeyboardInterrupt in the main thread.
  162.  
  163. - Attempting to save the shell raised an error related to saving
  164.   breakpoints, which are not implemented in the shell
  165.  
  166. - Provide a correct message when 'exit' or 'quit' are entered at the
  167.   IDLE command prompt  SF 695861
  168.  
  169. - Eliminate extra blank line in shell output caused by not flushing
  170.   stdout when user code ends with an unterminated print. SF 695861
  171.  
  172. - Moved responsibility for exception formatting (i.e. pruning IDLE internal
  173.   calls) out of rpc.py into the client and server.
  174.  
  175. - Exit IDLE cleanly even when doing subprocess I/O
  176.  
  177. - Handle subprocess interrupt with an RPC message.  
  178.  
  179. - Restart the subprocess if it terminates itself. (VPython programs do that)
  180.  
  181. - Support subclassing of exceptions, including in the shell, by moving the 
  182.   exception formatting to the subprocess.
  183.  
  184.  
  185.  
  186. What's New in IDLEfork 0.9 Alpha 2?
  187. ===================================
  188.  
  189. *Release date: 27-Jan-2003*
  190.  
  191. - Updated INSTALL.txt to claify use of the python2 rpm.
  192.  
  193. - Improved formatting in IDLE Help.
  194.  
  195. - Run menu: Replace "Run Script" with "Run Module".
  196.  
  197. - Code encountering an unhandled exception under the debugger now shows
  198.   the correct traceback, with IDLE internal levels pruned out.
  199.  
  200. - If an exception occurs entirely in IDLE, don't prune the IDLE internal
  201.   modules from the traceback displayed.
  202.  
  203. - Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
  204.  
  205. - IDLE icons will now install correctly even when setup.py is run from the
  206.   build directory
  207.  
  208. - Class Browser now compatible with Python2.3 version of pyclbr.py
  209.  
  210. - Left cursor move in presence of selected text now moves from left end
  211.   of the selection.
  212.  
  213. - Add Meta keybindings to "IDLE Classic Windows" to handle reversed
  214.   Alt/Meta on some Linux distros.
  215.  
  216. - Change default: IDLE now starts with Python Shell.
  217.  
  218. - Removed the File Path from the Additional Help Sources scrolled list.
  219.  
  220. - Add capability to access Additional Help Sources on the web if the 
  221.   Help File Path begins with //http or www.  (Otherwise local path is
  222.   validated, as before.)
  223.  
  224. - Additional Help Sources were not being posted on the Help menu in the
  225.   order entered.  Implement sorting the list by [HelpFiles] 'option' 
  226.   number.
  227.  
  228. - Add Browse button to New Help Source dialog.  Arrange to start in 
  229.   Python/Doc if platform is Windows, otherwise start in current directory.
  230.  
  231. - Put the Additional Help Sources directly on the Help menu instead of in
  232.   an Extra Help cascade menu.  Rearrange the Help menu so the Additional
  233.   Help Sources come last.  Update help.txt appropriately.
  234.  
  235. - Fix Tk root pop-ups in configSectionNameDialog.py  and configDialog.py
  236.  
  237. - Uniform capitalization in General tab of ConfigDialog, update the doc string.
  238.  
  239. - Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
  240.   deleting Additional Help Sources from the user's config file.
  241.  
  242. - Make configHelpSourceEdit OK button the default and bind <Return>
  243.  
  244. - Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
  245.   to parents.
  246.  
  247. - Use os.startfile() to open both Additional Help and Python Help on the
  248.   Windows platform.  The application associated with the file type will act as
  249.   the viewer.  Windows help files (.chm) are now supported via the
  250.   Settings/General/Additional Help facility.
  251.  
  252. - If Python Help files are installed locally on Linux, use them instead of
  253.   accessing python.org.
  254.  
  255. - Make the methods for finding the Python help docs more robust, and make
  256.   them work in the installed configuration, also.  
  257.  
  258. - On the Save Before Run dialog, make the OK button the default.  One
  259.   less mouse action!
  260.  
  261. - Add a method: EditorWindow.get_geometry() for future use in implementing
  262.   window location persistence.
  263.  
  264. - Removed the "Help/Advice" menu entry.  Thanks, David!  We'll remember!
  265.  
  266. - Change the "Classic Windows" theme's paste key to be <ctrl-v>.
  267.  
  268. - Rearrange the Shell menu to put Stack Viewer entries adjacent.
  269.  
  270. - Add the ability to restart the subprocess interpreter from the shell window;
  271.   add an associated menu entry "Shell/Restart" with binding Control-F6.  Update
  272.   IDLE help.
  273.  
  274. - Upon a restart, annotate the shell window with a "restart boundary".  Add a
  275.   shell window menu "Shell/View Restart" with binding F6 to jump to the most
  276.   recent restart boundary.
  277.  
  278. - Add Shell menu to Python Shell; change "Settings" to "Options".
  279.  
  280. - Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
  281.  
  282. - Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
  283.  
  284. - In installer text, fix reference to Visual Python, should be VPython.
  285.   Properly credit David Scherer.
  286.  
  287. - Modified idle, idle.py, idle.pyw to improve exception handling.
  288.  
  289.  
  290. What's New in IDLEfork 0.9 Alpha 1?
  291. ===================================
  292.  
  293. *Release date: 31-Dec-2002* 
  294.  
  295. - First release of major new functionality.  For further details refer to
  296.   Idle-dev and/or the Sourceforge CVS.
  297.  
  298. - Adapted to the Mac platform.
  299.  
  300. - Overhauled the IDLE startup options and revised the idle -h help message,
  301.   which provides details of command line usage.
  302.  
  303. - Multiple bug fixes and usability enhancements.
  304.  
  305. - Introduced the new RPC implementation, which includes a debugger.  The output
  306.   of user code is to the shell, and the shell may be used to inspect the
  307.   environment after the run has finished.  (In version 0.8.1 the shell
  308.   environment was separate from the environment of the user code.)
  309.  
  310. - Introduced the configuration GUI and a new About dialog.
  311.  
  312. - Removed David Scherer's Remote Procedure Call code and replaced with Guido
  313.   van Rossum's.  GvR code has support for the IDLE debugger and uses the shell
  314.   to inspect the environment of code Run from an Edit window.  Files removed:
  315.   ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
  316.  
  317. --------------------------------------------------------------------
  318. Refer to HISTORY.txt for additional information on earlier releases.
  319. --------------------------------------------------------------------
  320.  
  321.  
  322.  
  323.  
  324.  
  325.