Fixed Entry.select_from() to acually call the "select from" widget
command instead of the non-existant "select set".  (Fred)
diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py
index 1f784fd..fd25c84 100755
--- a/Lib/tkinter/Tkinter.py
+++ b/Lib/tkinter/Tkinter.py
@@ -1123,7 +1123,7 @@
 		self.tk.call(self._w, 'selection', 'clear')
 	select_clear = selection_clear
 	def selection_from(self, index):
-		self.tk.call(self._w, 'selection', 'set', index)
+		self.tk.call(self._w, 'selection', 'from', index)
 	select_from = selection_from
 	def selection_present(self):
 		return self.tk.getboolean(