Kurt B. Kaiser
73360a3e61
Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
...
M ClassBrowser.py
M ColorDelegator.py
M EditorWindow.py
M NEWS.txt
M PyShell.py
M TreeWidget.py
M config-highlight.def
M configDialog.py
M configHandler.py
2004-03-08 18:15:31 +00:00
Walter Dörwald
70a6b49821
Replace backticks with repr() or "%r"
...
From SF patch #852334 .
2004-02-12 17:35:32 +00:00
Kurt B. Kaiser
7663729ec7
There was an error in the Tk error dialog fix at Rev 1.84 which caused starting
...
w/o the subprocess to fail. Check in a fix to IDLE and IDLEfork.
M PyShell.py
Backport candidate, combine with previous.
2004-01-21 22:10:01 +00:00
Kurt B. Kaiser
d6ab77d27d
rpc.py:SocketIO - Large modules were generating large pickles when downloaded
...
to the execution server. The return of the OK response from the subprocess
initialization was interfering and causing the sending socket to be not
ready. Add an IO ready test to fix this. Moved the polling IO ready test
into pollpacket().
M NEWS.txt
M rpc.py
Backport candidate.
2004-01-21 19:21:11 +00:00
Kurt B. Kaiser
af3eb87802
Added a Tk error dialog to run.py inform the user if the subprocess can't
...
connect to the user GUI process. Added a timeout to the GUI's listening
socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
the port or connect to the subprocess. Clean up error handling during
connection initiation phase. This is an update of Python Patch 778323.
M NEWS.txt
M PyShell.py
M ScriptBinding.py
M run.py
Backport candidate.
2004-01-21 18:54:30 +00:00
Kurt B. Kaiser
e9802a301d
- Print correct exception even if source file changed since shell was
...
restarted. IDLEfork Patch 869012 Noam Raphael
Modified Files:
NEWS.txt run.py
2004-01-02 04:04:04 +00:00
Kurt B. Kaiser
188e25f637
Fix a typo introduced at 1.21
...
M IOBinding.py
Backported to 23-maint
2003-11-25 05:01:00 +00:00
Kurt B. Kaiser
2303b1c19a
Keybindings with the Shift modifier now work correctly. So do bindings
...
which use the Space key. Limit unmodified user keybindings to the
function keys.
Python Bug 775353, IDLEfork Bugs 755647, 761557
Improve error handling during startup if there's no Tkinter.
M NEWS.txt
M PyShell.py
M config-keys.def
M configHandler.py
M keybindingDialog.py
Backport candidate.
2003-11-24 05:26:16 +00:00
Kurt B. Kaiser
c714d45bf5
Update NEWS.txt to include some items missed earlier. Update the
...
IDLE version to 1.1a0.
Modified Files:
NEWS.txt idlever.py
2003-11-24 03:23:16 +00:00
Kurt B. Kaiser
924f616421
- After an exception, run.py was not setting the exception vector. Noam
...
Raphael suggested correcting this so pdb's postmortem pm() would work.
IDLEfork Patch 844675
Modified: NEWS.txt run.py
2003-11-19 04:52:32 +00:00
Neal Norwitz
9920430107
SF #775057 , fix IDLE problem in about dialog
...
If the file doesn't exist, the code to display an error message was broken
Will backport.
2003-10-28 21:57:10 +00:00
Thomas Heller
84ef153c74
Let IDLE use the HTMLHelp docs on Windows, if found.
...
Already 'backported' to release23-maint.
2003-09-23 20:53:10 +00:00
Kurt B. Kaiser
62685d36aa
Python Bug 775061
...
1. Remove "idle" script, it lives in Tools/scripts/ now.
2. Remove shebang from idle.py, should be called explicitly.
3. Remove obsolete test code from rpc.py; needs unit test.
2003-09-10 02:42:18 +00:00
Martin v. Löwis
8ad1dd7df1
Catch locale.error as well. Fixes #788378 . Will backport to 2.3.
2003-09-03 05:13:14 +00:00
Kurt B. Kaiser
b785518d05
IDLE didn't start correctly when Python was installed in "Program Files"
...
on W2K and XP. Python Bugs 780451, 784183
Backported to 2.2-maint
2003-08-14 14:54:28 +00:00
Kurt B. Kaiser
3f42a6d267
IDLEfork Bug 782759
...
backported to 23-maint
2003-08-09 01:51:28 +00:00
Martin v. Löwis
249d50a25f
Make sure eol_convention is an ASCII string. Fixes #774680 .
...
Will backport to 2.3.
2003-08-05 05:51:20 +00:00
Kurt B. Kaiser
220fecf0f4
Added a banner to the shell startup message discussing possible
...
warnings from personal firewall software. Added the same text
to README.txt, updated NEWS.txt for release.
M NEWS.txt
M PyShell.py
M README.txt
2003-07-27 03:24:19 +00:00
Kurt B. Kaiser
7fbc3046df
Update for release.
2003-07-27 00:56:41 +00:00
Kurt B. Kaiser
6145a624b8
1. Python Bug 775541: Calltips error when docstring is None. Introduced
...
by patch 769142. Fixed by patch 776062. KBK will backport net result
to IDLE release22-maint and IDLEfork.
2. Update NEWS.txt and idlever for release.
2003-07-23 15:42:14 +00:00
Kurt B. Kaiser
cca912279a
Update to reflect the current status of the configuration system.
...
Extensions must still be configured manually and there is currently one
set of extension key bindings for all platforms.
Bring NEWS.txt up to date.
Update CREDITS.txt and idlever.py for release.
M NEWS.txt
M config-extensions.def
M extend.txt
M help.txt
M idlever.py
2003-07-16 03:10:43 +00:00
Raymond Hettinger
61bfb736b4
SF bug #769142 : CallTip trimming may loop forever.
...
Needs to be backported to both IDLE and IDLEFORK.
2003-07-13 10:25:14 +00:00
Raymond Hettinger
931237e2e6
SF patch #768187 : replace apply(f, args, kwds) with f(*args, **kwds)
2003-07-09 18:48:24 +00:00
Kurt B. Kaiser
bea57c6c35
SF Bug 767794
...
"Break or continue outside loop causes crash"
2003-07-09 04:27:24 +00:00
Martin v. Löwis
bcc651a1f9
Idlefork patch #682347 : convert Unicode strings from readline to
...
IOBinding.encoding. Also set sys.std{in,out,err}.encoding, for both
the local and the subprocess case.
2003-06-22 07:52:56 +00:00
Kurt B. Kaiser
7345375771
Add ':' after IDLE version, fix spacing on a couple of lines I missed
2003-06-16 18:46:42 +00:00
Martin v. Löwis
424a415951
Make CREDITS.txt a Latin-1 file. Extend ViewFile to support file encodings.
2003-06-15 22:28:05 +00:00
Kurt B. Kaiser
7de3772b28
Forwardport Patch from IDLEfork SF 615312
...
Convert characters from the locale's encoding on output
2003-06-15 17:49:59 +00:00
Kurt B. Kaiser
9e8b828f07
Support testing in .../Lib/idlelib when calling <python PyShell.py>
...
by providing other modules access to globals set up in PyShell.main()
2003-06-15 17:38:45 +00:00
Kurt B. Kaiser
f35092c3d4
Move to Version 1.0b2
2003-06-15 17:12:25 +00:00
Kurt B. Kaiser
61e2c9a402
Forwardport Patch from IDLEfork SF 610329
...
Remove deprecated tempfile usage
2003-06-14 17:56:25 +00:00
Kurt B. Kaiser
b3a0a666f2
Remove the 2.2 compatibility module boolcheck.py and related code
...
M PyShell.py
R boolcheck.py
M run.py
2003-06-14 03:33:20 +00:00
Kurt B. Kaiser
ae8bbff231
Remove reference to IDLEfork
2003-06-14 03:23:56 +00:00
Kurt B. Kaiser
76bcb5cb6d
Update NEWS.txt and move info on release 0.8.1 and earlier to HISTORY.txt
...
M HISTORY.txt
M NEWS.txt
2003-06-14 02:51:06 +00:00
Kurt B. Kaiser
93e8e54924
Interrupt module has been folded into the thread module
...
Modified Files:
run.py
Removed Files:
interruptmodule.c
2003-06-13 22:03:43 +00:00
Kurt B. Kaiser
a4e5c4da4d
No longer needed.
2003-06-12 04:38:13 +00:00
Kurt B. Kaiser
09cb74ba20
aboutDialog.py:
...
1. Add additional buttons for Python Copyright and Credits
2. Use the Python LICENSE file instead of the old IDLE LICENSE.txt
3. Add additional buttons for IDLE's README and NEWS
4. Implement a method to read text from a _Printer object
5. Rename the Ok button to Close
6. Clean up to conform to Python code formatting standards
textView.py:
1. Change background to white on all platforms
2. Increase height of frame
3. Add an optional parameter to textViewer to allow inserting text into
the viewer instead of reading a file.
4. Rename the Ok button to Close
Modified Files:
aboutDialog.py textView.py
2003-06-12 04:20:56 +00:00
Kurt B. Kaiser
d78b23025c
1. Remove the Readme entry on the Help Menu, now in About dialog.
...
2. Change title on About dialog.
Modified Files:
Bindings.py EditorWindow.py
2003-06-12 04:03:49 +00:00
Kurt B. Kaiser
fe04afc629
Direct readers to CVS logs.
2003-06-12 03:57:23 +00:00
Kurt B. Kaiser
31dea4cf43
It /is/ a package...
2003-06-12 03:55:24 +00:00
Kurt B. Kaiser
1821056002
Updated for IDLEfork re-integration
2003-06-12 03:51:27 +00:00
Kurt B. Kaiser
b67e13d278
Will use the Python LICENSE file instead.
2003-06-12 03:45:55 +00:00
Kurt B. Kaiser
d5407da4bc
Remove setup file, no longer needed.
2003-06-12 03:44:01 +00:00
Kurt B. Kaiser
a00d7bd41c
Remove unneeded MANIFEST template.
2003-06-12 03:41:01 +00:00
Kurt B. Kaiser
a737bb378b
Remove unneeded installation instructions.
2003-06-12 03:39:08 +00:00
Kurt B. Kaiser
a8f22d711c
Update version.
2003-06-12 03:15:47 +00:00
Kurt B. Kaiser
9067c8d85c
SF 748975 Printing unsaved shell fails
...
M IOBinding.py
2003-06-09 03:12:42 +00:00
Kurt B. Kaiser
ef58adf8d6
1. Find in Files Dialog shows text selection if there is one
...
2. Remove obsolete comment associated with Window menu updating
M EditorWindow.py
M GrepDialog.py
2003-06-07 03:21:17 +00:00
Kurt B. Kaiser
260cb9034c
1. Update WindowList registry when filename changes so that
...
Window menu updates.
2. Display Python Shell window in Window menu
3. Remove some dead code in FileList.py
M EditorWindow.py
M FileList.py
M WindowList.py
2003-06-06 21:58:38 +00:00
Kurt B. Kaiser
24d7e0cbb8
Avoid problem resolving 'localhost'
...
M PyShell.py
M rpc.py
M run.py
2003-06-05 23:51:29 +00:00