'Untitled' violates the PEP 8 standard for .py files
======================================
+bpo-35769: Change new file name from 'Untitled' to 'untitled'.
+
bpo-35660: Fix imports in window module.
bpo-35641: Properly format calltip for function without docstring.
elif long:
title = long
else:
- title = "Untitled"
+ title = "untitled"
icon = short or long or title
if not self.get_saved():
title = "*%s*" % title
if filename:
filename = os.path.basename(filename)
else:
- filename = "Untitled"
+ filename = "untitled"
# return unicode string to display non-ASCII chars correctly
return self._filename_to_unicode(filename)
--- /dev/null
+Change IDLE's new file name from 'Untitled' to 'untitled'