• Home
  • Raw
  • Download

Lines Matching +full:localhost +full:- +full:test +full:- +full:win

3 *Release date: XX-XXX-2010*
5 - idle.py modified and simplified to better support developing experimental
8 - OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
11 - Windows: Version string for the .chm help file changed, file not being
14 - Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
18 - Remove port spec from run.py and fix bug where subprocess fails to
21 - Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
24 - Issue #3549: On MacOS the preferences menu was not present
26 - IDLE would print a "Unhandled server exception!" message when internal
29 - Issue #4455: IDLE failed to display the windows list when two windows have
32 - Issue #4383: When IDLE cannot make the connection to its subprocess, it would
35 - help() was not paging to the shell. Issue1650.
37 - CodeContext was not importing.
39 - Corrected two 3.0 compatibility errors reported by Mark Summerfield:
40 http://mail.python.org/pipermail/python-3000/2007-December/011491.html
42 - Shell was not colorizing due to bug introduced at r57998, Bug 1586.
44 - Issue #1585: IDLE uses non-existent xrange() function.
46 - Windows EOL sequence not converted correctly, encoding error.
49 - IDLE converted to Python 3000 syntax.
51 - Strings became Unicode.
53 - CallTips module now uses the inspect module to produce the argspec.
55 - IDLE modules now use absolute import instead of implied relative import.
57 - atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
58 in config-main.cfg remains unchanged: if set, registered exit functions will
64 *Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
66 - Issue #2665: On Windows, an IDLE installation upgraded from an old version
69 - Home / Control-A toggles between left margin and end of leading white
72 - Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
74 - Autocompletion of filenames now support alternate separators, e.g. the
77 - Configured selection highlighting colors were ignored; updating highlighting
78 in the config dialog would cause non-Python files to be colored as if they
81 - ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
83 - There was an error on exit if no sys.exitfunc was defined. Issue 1647.
85 - Could not open files in .idlerc directory if latter was hidden on Windows.
88 - Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
90 - tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
93 - Add confirmation dialog before printing. Patch 1717170 Tal Einat.
95 - Show paste position if > 80 col. Patch 1659326 Tal Einat.
97 - Update cursor color without restarting. Patch 1725576 Tal Einat.
99 - Allow keyboard interrupt only when user code is executing in subprocess.
100 Patch 1225 Tal Einat (reworked from IDLE-Spoon).
102 - configDialog cleanup. Patch 1730217 Tal Einat.
104 - textView cleanup. Patch 1718043 Tal Einat.
106 - Clean up EditorWindow close.
108 - Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
110 - OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
112 - Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
113 option in config-extensions w/o a value. Patch #1672481, Tal Einat
115 - Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
117 current selection and closes ACW (similar to double-click and Return); scroll
120 - AutoCompleteWindow moved below input line, will move above if there
123 - Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
126 - Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
128 - Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
130 - Patch #1362975: Rework CodeContext indentation algorithm to
131 avoid hard-coding pixel widths.
133 - Bug #813342: Start the IDLE subprocess with -Qnew if the parent
136 - Honor the "Cancel" action in the save dialog (Debian bug #299092)
138 - Some syntax errors were being caught by tokenize during the tabnanny
142 - IDLE's version number takes a big jump to match the version number of
148 *Release date: 19-SEP-2006*
150 - File menu hotkeys: there were three 'p' assignments. Reassign the
154 - IDLE honors new quit() and exit() commands from site.py Quitter() object.
157 - The 'with' statement is now a Code Context block opener.
160 - Retrieval of previous shell command was not always preserving indentation
163 - Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
165 - ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
167 - When used w/o subprocess, all exceptions were preceded by an error
170 - Bug #1525817: Don't truncate short lines in IDLE's tool tips.
172 - Bug #1517990: IDLE keybindings on MacOS X now work correctly
174 - Bug #1517996: IDLE now longer shows the default Tk menu when a
177 - EditorWindow.test() was failing. Bug 1417598
179 - EditorWindow failed when used stand-alone if sys.ps1 not set.
182 - Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
184 - Avoid occasional failure to detect closing paren properly.
187 - Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
189 - Colorizer now handles #<builtin> correctly, also unicode strings and
193 - Patch #1162825: Support non-ASCII characters in IDLE window titles.
195 - Source file f.flush() after writing; trying to avoid lossage if user
198 - Options / Keys / Advanced dialog made functional. Also, allow binding
201 - 'syntax' patch adds improved calltips and a new class attribute listbox.
205 - Better indentation after first line of string continuation.
208 - Fixed CodeContext alignment problem, following suggestion from Tal Einat.
210 - Increased performance in CodeContext extension Patch 936169 Noam Raphael
212 - Mac line endings were incorrect when pasting code from some browsers
215 - <Enter> when cursor is on a previous command retrieves that command. Instead
220 - Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
223 - Corrected "tab/space" Error Dialog to show correct menu for Untabify.
226 - New files are colorized by default, and colorizing is removed when
227 saving as non-Python files. Patch 1196895 Jeff Shute
230 - Improve subprocess link error notification.
232 - run.py: use Queue's blocking feature instead of sleeping in the main
235 - Add config-main option to make the 'history' feature non-cyclic.
238 - Removed ability to configure tabs indent from Options dialog. This 'feature'
240 default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
244 - Enable setting the indentation width using the Options dialog.
247 - Add keybindings for del-word-left and del-word-right.
249 - Discourage using an indent width other than 8 when using tabs to indent
252 - Restore use of EditorWindow.set_indentation_params(), was dead code since
258 - Add Tabnanny check before Run/F5, not just when Checking module.
260 - If an extension can't be loaded, print warning and skip it instead of
263 - Improve error handling when .idlerc can't be created (warn and exit).
265 - The GUI was hanging if the shell window was closed while a raw_input()
267 http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
269 - The remote procedure call module rpc.py can now access data attributes of
275 *Release date: 30-NOV-2004*
277 - On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
280 - Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
282 config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
284 - A change to the linecache.py API caused IDLE to exit when an exception was
285 raised while running without the subprocess (-n switch). Python Bug 1063840.
287 - When paragraph reformat width was made configurable, a bug was
293 - Improve keyboard focus binding, especially in Windows menu. Improve
297 - If user passes a non-existent filename on the commandline, just
300 - EditorWindow.py was not finding the .chm help file on Windows. Typo
303 - checking sys.platform for substring 'win' was breaking IDLE docs on Mac
306 - Redirect the warning stream to the shell during the ScriptBinding check of
310 - CodeContext hint pane visibility state is now persistent across sessions.
315 - Paragraph reformat width is now a configurable parameter in the
318 - New Extension: CodeContext. Provides block structuring hints for code
321 - If nulls somehow got into the strings in recent-files.lst
324 - If the normal background is changed via Configure/Highlighting, it will
327 - Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
329 refreshed and Python bug [897872 ] Unknown color name on HP-UX
331 - rpc.py:SocketIO - Large modules were generating large pickles when downloaded
334 ready. Add an IO ready test to fix this. Moved the polling IO ready test
337 - Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
339 - Added a Tk error dialog to run.py inform the user if the subprocess can't
345 - Print correct exception even if source file changed since shell was
348 - Keybindings with the Shift modifier now work correctly. So do bindings which
352 - After an exception, run.py was not setting the exception vector. Noam
356 - IDLE now does not fail to save the file anymore if the Tk buffer is not a
359 - IDLE didn't start correctly when Python was installed in "Program Files" on
362 - config-main.def documentation incorrectly referred to idle- instead of
363 config- filenames. SF 782759 Also added note about .idlerc location.
368 *Release date: 29-Jul-2003*
370 - Added a banner to the shell discussing warnings possibly raised by personal
373 - Calltip error when docstring was None Python Bug 775541
375 - Updated extend.txt, help.txt, and config-extensions.def to correctly
378 - Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
380 - Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
383 - Break or continue statements outside a loop were causing IDLE crash
386 - Convert Unicode strings from readline to IOBinding.encoding. Also set
390 - Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
391 file Latin-1.
393 - Updated the About dialog to reflect re-integration into Python. Provide
397 - TextViewer() now has a third parameter which allows inserting text into the
400 - (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
404 - Printing the Shell window was failing if it was not saved first SF 748975
406 - When using the Search in Files dialog, if the user had a selection
409 - The Python Shell entry was disappearing from the Windows menu.
411 - Update the Windows file list when a file name change occurs
413 - Change to File / Open Module: always pop up the dialog, using the current
416 - Avoided a problem with starting the subprocess when 'localhost' doesn't
419 - Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
422 - File / New will by default save in the directory of the Edit window from
428 *Release date: 02-Jun-2003*
430 - The current working directory of the execution environment (and shell
433 - Added the delete-exitfunc option to config-main.def. (This option is not
437 - IDLE now preserves the line ending codes when editing a file produced on
440 - Reduced default editor font size to 10 point and increased window height
443 - Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
446 - Added Autosave feature: when user runs code from edit window, if the file
451 - Improved the RESTART annotation in the shell window when the user restarts
453 repeatedly hammers the Ctrl-F6 restart.
455 - Allow IDLE to run when not installed and cwd is not the IDLE directory
456 SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
458 - When a module is run from an EditorWindow: if its directory is not in
462 - Correctly restart the subprocess if it is running user code and the user
464 the link is broken and it is possible to restart the subprocess and re-
467 - Improved exception reporting when running commands or scripts from the
470 - Added a -n command line switch to start IDLE without the subprocess.
473 - Added a comment to the shell startup header to indicate when IDLE is not
476 - Restore the ability to run without the subprocess. This can be important for
482 edit the code and a separate instance run to test changes. (Multiple
485 - Improve the error message a user gets when saving a file with non-ASCII
487 'EncodingMessage', which contains the line to add in a fixed-font entry
490 possible values: none, utf-8, and locale. None is the default: IDLE will show
491 this dialog when non-ASCII characters are encountered. utf-8 means that files
492 with non-ASCII characters are saved as utf-8-with-bom. locale means that
494 source contains characters outside the locale's charset. SF 710733 - Loewis
496 - Improved I/O response by tweaking the wait parameter in various
499 - Implemented a threaded subprocess which allows interrupting a pass
504 - Implemented the 'interrupt' extension module, which allows a subthread
507 - Attempting to save the shell raised an error related to saving
510 - Provide a correct message when 'exit' or 'quit' are entered at the
513 - Eliminate extra blank line in shell output caused by not flushing
516 - Moved responsibility for exception formatting (i.e. pruning IDLE internal
519 - Exit IDLE cleanly even when doing subprocess I/O
521 - Handle subprocess interrupt with an RPC message.
523 - Restart the subprocess if it terminates itself. (VPython programs do that)
525 - Support subclassing of exceptions, including in the shell, by moving the
531 *Release date: 27-Jan-2003*
533 - Updated INSTALL.txt to claify use of the python2 rpm.
535 - Improved formatting in IDLE Help.
537 - Run menu: Replace "Run Script" with "Run Module".
539 - Code encountering an unhandled exception under the debugger now shows
542 - If an exception occurs entirely in IDLE, don't prune the IDLE internal
545 - Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
547 - IDLE icons will now install correctly even when setup.py is run from the
550 - Class Browser now compatible with Python2.3 version of pyclbr.py
552 - Left cursor move in presence of selected text now moves from left end
555 - Add Meta keybindings to "IDLE Classic Windows" to handle reversed
558 - Change default: IDLE now starts with Python Shell.
560 - Removed the File Path from the Additional Help Sources scrolled list.
562 - Add capability to access Additional Help Sources on the web if the
566 - Additional Help Sources were not being posted on the Help menu in the
570 - Add Browse button to New Help Source dialog. Arrange to start in
573 - Put the Additional Help Sources directly on the Help menu instead of in
577 - Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
579 - Uniform capitalization in General tab of ConfigDialog, update the doc string.
581 - Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
584 - Make configHelpSourceEdit OK button the default and bind <Return>
586 - Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
589 - Use os.startfile() to open both Additional Help and Python Help on the
594 - If Python Help files are installed locally on Linux, use them instead of
597 - Make the methods for finding the Python help docs more robust, and make
600 - On the Save Before Run dialog, make the OK button the default. One
603 - Add a method: EditorWindow.get_geometry() for future use in implementing
606 - Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
608 - Change the "Classic Windows" theme's paste key to be <ctrl-v>.
610 - Rearrange the Shell menu to put Stack Viewer entries adjacent.
612 - Add the ability to restart the subprocess interpreter from the shell window;
613 add an associated menu entry "Shell/Restart" with binding Control-F6. Update
616 - Upon a restart, annotate the shell window with a "restart boundary". Add a
620 - Add Shell menu to Python Shell; change "Settings" to "Options".
622 - Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
624 - Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
626 - In installer text, fix reference to Visual Python, should be VPython.
629 - Modified idle, idle.py, idle.pyw to improve exception handling.
634 *Release date: 31-Dec-2002*
636 - First release of major new functionality. For further details refer to
637 Idle-dev and/or the Sourceforge CVS.
639 - Adapted to the Mac platform.
641 - Overhauled the IDLE startup options and revised the idle -h help message,
644 - Multiple bug fixes and usability enhancements.
646 - Introduced the new RPC implementation, which includes a debugger. The output
651 - Introduced the configuration GUI and a new About dialog.
653 - Removed David Scherer's Remote Procedure Call code and replaced with Guido
658 --------------------------------------------------------------------
660 --------------------------------------------------------------------