mirror of https://github.com/python/cpython
Issue #10997: merge from 3.2
This commit is contained in:
commit
01d63a6e06
|
@ -860,7 +860,7 @@ class EditorWindow(object):
|
||||||
# for each edit window instance, construct the recent files menu
|
# for each edit window instance, construct the recent files menu
|
||||||
for instance in self.top.instance_dict:
|
for instance in self.top.instance_dict:
|
||||||
menu = instance.recent_files_menu
|
menu = instance.recent_files_menu
|
||||||
menu.delete(1, END) # clear, and rebuild:
|
menu.delete(0, END) # clear, and rebuild:
|
||||||
for i, file_name in enumerate(rf_list):
|
for i, file_name in enumerate(rf_list):
|
||||||
file_name = file_name.rstrip() # zap \n
|
file_name = file_name.rstrip() # zap \n
|
||||||
# make unicode string to display non-ASCII chars correctly
|
# make unicode string to display non-ASCII chars correctly
|
||||||
|
|
|
@ -60,6 +60,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #10997: Prevent a duplicate entry in IDLE's "Recent Files" menu.
|
||||||
|
|
||||||
- Issue #14443: Tell rpmbuild to use the correct version of Python in
|
- Issue #14443: Tell rpmbuild to use the correct version of Python in
|
||||||
bdist_rpm. Initial patch by Ross Lagerwall.
|
bdist_rpm. Initial patch by Ross Lagerwall.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue