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