• Guido van Rossum's avatar
    Amazing. A very subtle change in policy in descr-branch actually · 4269601f
    Guido van Rossum yazdı
    found a bug here.  Here's the deal:
    
    Class PyShell derives from class OutputWindow.  Method PyShell.close()
    wants to invoke its parent method, but because PyShell long ago was
    inherited from class PyShellEditorWindow, it invokes
    PyShelEditorWindow.close(self).  Now, class PyShellEditorWindow itself
    derives from class OutputWindow, and inherits the close() method from
    there without overriding it.  Under the old rules,
    PyShellEditorWindow.close would return an unbound method restricted to
    the class that defined the implementation of close(), which was
    OutputWindow.close.  Under the new rules, the unbound method is
    restricted to the class whose method was requested, that is
    PyShellEditorWindow, and this was correctly trapped as an error.
    4269601f
Adı
Son kayıt (commit)
Son güncelleme
..
Icons Loading commit data...
AutoExpand.py Loading commit data...
AutoIndent.py Loading commit data...
Bindings.py Loading commit data...
CallTipWindow.py Loading commit data...
CallTips.py Loading commit data...
ChangeLog Loading commit data...
ClassBrowser.py Loading commit data...
ColorDelegator.py Loading commit data...
Debugger.py Loading commit data...
Delegator.py Loading commit data...
EditorWindow.py Loading commit data...
FileList.py Loading commit data...
FormatParagraph.py Loading commit data...
FrameViewer.py Loading commit data...
GrepDialog.py Loading commit data...
IOBinding.py Loading commit data...
IdleConf.py Loading commit data...
IdleHistory.py Loading commit data...
MultiScrolledLists.py Loading commit data...
MultiStatusBar.py Loading commit data...
NEWS.txt Loading commit data...
ObjectBrowser.py Loading commit data...
OldStackViewer.py Loading commit data...
OutputWindow.py Loading commit data...
ParenMatch.py Loading commit data...
PathBrowser.py Loading commit data...
Percolator.py Loading commit data...
PyParse.py Loading commit data...
PyShell.py Loading commit data...
README.txt Loading commit data...
RemoteInterp.py Loading commit data...
ReplaceDialog.py Loading commit data...
ScriptBinding.py Loading commit data...
ScrolledList.py Loading commit data...
SearchBinding.py Loading commit data...
SearchDialog.py Loading commit data...
SearchDialogBase.py Loading commit data...
SearchEngine.py Loading commit data...
Separator.py Loading commit data...
StackViewer.py Loading commit data...
TODO.txt Loading commit data...
ToolTip.py Loading commit data...
TreeWidget.py Loading commit data...
UndoDelegator.py Loading commit data...
WidgetRedirector.py Loading commit data...
WindowList.py Loading commit data...
ZoomHeight.py Loading commit data...
__init__.py Loading commit data...
config-unix.txt Loading commit data...
config-win.txt Loading commit data...
config.txt Loading commit data...
eventparse.py Loading commit data...
extend.txt Loading commit data...
help.txt Loading commit data...
idle Loading commit data...
idle.bat Loading commit data...
idle.py Loading commit data...
idle.pyw Loading commit data...
idlever.py Loading commit data...
keydefs.py Loading commit data...
setup.py Loading commit data...
testcode.py Loading commit data...