Georg Brandl
afe05bd494
Bump version to 3.2.3rc1.
14 years ago
Benjamin Peterson
36a6558891
version now 3.1.5rc1
14 years ago
Terry Jan Reedy
e91e7637bb
Issue 964437 Make IDLE help window non-modal.
Patch by Guilherme Polo and Roger Serwy.
14 years ago
Terry Jan Reedy
a77aa69870
#13933 refine patch using 'new' builtin
14 years ago
Ned Deily
ed3b867f33
Issue #13933 : IDLE auto-complete did not work with some imported
module, like hashlib. (Patch by Roger Serwy)
14 years ago
Terry Jan Reedy
4d82ade424
whitespace
14 years ago
Terry Jan Reedy
da4c467210
#13506 Add '' to path for interactive interpreter by adding with_cwd parameter
to PyShell.PyShell.transfer_path() and changing elsewhere as needed.
Original patches by Marco Scataglini and Roger Serwy.
14 years ago
Terry Jan Reedy
dc224f82c0
#6528 None, True, False are keywords in 3.x. Patch by Roger Serwy.
14 years ago
Terry Jan Reedy
7f53aea53b
#13039 allow proper deletion of '>>> ' in IDLE editor windows.
Patch by Roger Serwy.
14 years ago
Ned Deily
f505b7425c
Issue #4625 : If IDLE cannot write to its recent file or breakpoint
files, display a message popup and continue rather than crash.
(original patch by Roger Serwy)
14 years ago
Ned Deily
2f0ad742b5
Issue #8641 : Update IDLE 3 syntax coloring to recognize b".." and not u"..".
(Patch by Tal Einat)
14 years ago
Ned Deily
7aff451728
Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.
(Patch by Roger Serwy)
14 years ago
Florent Xicluna
5d1155c08e
Closes #13258 : Use callable() built-in in the standard library.
14 years ago
Ned Deily
79746426c4
Issue #9871 : Prevent IDLE 3 crash when given byte stings
with invalid hex escape sequences, like b'\x0'.
(Original patch by Claudiu Popa.)
15 years ago
Victor Stinner
979482a315
Issue #12636 : IDLE reads the coding cookie when executing a Python script.
15 years ago
Victor Stinner
85c6772aec
IDLE: fix some RessourceWarning, reuse tokenize.open()
15 years ago
Georg Brandl
b0993bc78d
Bump to 3.2.2.
15 years ago
Georg Brandl
b3f0ce4d1e
Bump version to 3.2.2rc1.
15 years ago
Ned Deily
e5cad23a92
Issue #12540 : Prevent zombie IDLE processes on Windows due to changes
in os.kill(). Original patch by Eli Bendersky.
15 years ago
Éric Araujo
ccf03a1cdc
Fix resource warning when looking at turtledemo’s help ( #12295 )
15 years ago
Ned Deily
f25e3d5278
Issue #12590 : IDLE editor window now always displays the first line
when opening a long file. With Tk 8.5, the first line was hidden.
15 years ago
Georg Brandl
cd0dc16fdc
Bump version to 3.2.1.
15 years ago
Senthil Kumaran
80dffefcd9
Fix closes issue12438 - idlelib.PyShell's showformatwarning method was passing an incorrect arg.
15 years ago
Senthil Kumaran
aa90e7c573
Fix closes issue12438 - idlelib.PyShell's showformatwarning method was passing an incorrect arg.
15 years ago
Georg Brandl
d4fa7ed8db
Bump to 3.2.1rc2.
15 years ago
Benjamin Peterson
d858df20d0
bump to 3.1.4
15 years ago
Łukasz Langa
41c1910bb3
#12274 : use proper escaping for % in IDLE config.
15 years ago
Benjamin Peterson
9a63745273
bump to 3.1.4rc1
15 years ago
Ronald Oussoren
5ee0567bb2
Fixes #11088 : IDLE crashes when using F5 to run a script on OSX with Tk 8.5
Without this patch IDLE will crash reliably on OSX when Tkinter
is linked to TkCocoa 8.5.x.
To reproduce:
* Create a new file (script.py) with the following two lines:
x = input('prompt: ')
print(x)
* Save the script
* Run the script using the F5 keyboard shortcut
(running from the menu works fine)
The patch is a fairly crude hack, but we haven't found a better
workaround for this Tk bug yet.
15 years ago
Georg Brandl
5673e27e72
Bump to 3.2.1rc1.
15 years ago
Kurt B. Kaiser
dfbe1592db
Issue #6378 : Further adjust idle.bat to start associated Python
15 years ago
Kurt B. Kaiser
0a42982316
Issue #11896 : Save on Close failed despite selecting "Yes" in dialog.
_tkinter.c is returning <class '_tkinter.Tcl_Obj'> sometimes. Don't use
tkinter.messagebox.Message - use the helper functions which convert to str.
15 years ago
Kurt B. Kaiser
6551baa5a5
Correct version in IDLE NEWS.txt
15 years ago
Kurt B. Kaiser
e147806da9
Issue #1028 : Tk returns invalid Unicode null in %A: UnicodeDecodeError.
With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused IDLE to
exit. Converted to valid Unicode null in PythonCmd().
15 years ago
Georg Brandl
cd79cdc5e6
Bump to 3.2.1b1.
15 years ago
Raymond Hettinger
2df393cc51
Fix nit.
15 years ago
Raymond Hettinger
f6445e8f41
Issue 11718: Teach IDLE's open module dialog to find packages.
15 years ago
Kurt B. Kaiser
946f17214c
<Home> toggle failing on Tk 8.5, causing IDLE exits. Issue #4676
15 years ago
Kurt B. Kaiser
75fc566d0f
<Home> toggle non-functional when NumLock set
on Windows. Issue3851.
15 years ago
Ezio Melotti
13925008dc
#11565 : Fix several typos. Patch by Piotr Kasprzyk.
15 years ago
Ezio Melotti
42da663e6f
#11515 : fix several typos. Patch by Piotr Kasprzyk.
15 years ago
Georg Brandl
260a788767
Version bump to 3.2 final.
15 years ago
Georg Brandl
a6d12ef048
Bump for 3.2rc3.
15 years ago
Brian Curtin
8ce0fac6c8
Merged revisions 88258 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88258 | georg.brandl | 2011-01-30 02:16:07 -0600 (Sun, 30 Jan 2011) | 3 lines
#11069 : fix the IDLE Stack Viewer, by not using "list" as a variable name.
Original patch by Brian Curtin, reviewed by me.
........
15 years ago
Georg Brandl
d6e19c3513
Bump version.
15 years ago
Georg Brandl
d163c2c57b
#11069 : fix the IDLE Stack Viewer, by not using "list" as a variable name.
Original patch by Brian Curtin, reviewed by me.
15 years ago
Ned Deily
7a8e21a6ec
Merged revisions 88234 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88234 | ned.deily | 2011-01-29 10:43:56 -0800 (Sat, 29 Jan 2011) | 5 lines
Issue #11053 : Fix IDLE "Syntax Error" windows to behave as in 2.x,
preventing a confusing hung appearance on OS X with the windows
obscured. (with release manager approval for 3.2rc2)
........
15 years ago
Ned Deily
26d55edc2f
Merged revisions 88236 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88236 | ned.deily | 2011-01-29 11:10:26 -0800 (Sat, 29 Jan 2011) | 3 lines
Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save
commands. (with release manager approval for 3.2rc2)
........
15 years ago
Ned Deily
5c2d330662
Issue 11052: Correct IDLE menu accelerators on Mac OS X for Save
commands. (with release manager approval for 3.2rc2)
15 years ago
Ned Deily
806c944edb
Issue #11053 : Fix IDLE "Syntax Error" windows to behave as in 2.x,
preventing a confusing hung appearance on OS X with the windows
obscured. (with release manager approval for 3.2rc2)
15 years ago