home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / NEWS.txt < prev    next >
Text File  |  2003-12-30  |  14KB  |  349 lines

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