Get rid of many apply() calls.
diff --git a/Lib/UserList.py b/Lib/UserList.py
index 69f683e..76cf31f 100644
--- a/Lib/UserList.py
+++ b/Lib/UserList.py
@@ -77,7 +77,7 @@
     def count(self, item): return self.data.count(item)
     def index(self, item): return self.data.index(item)
     def reverse(self): self.data.reverse()
-    def sort(self, *args): apply(self.data.sort, args)
+    def sort(self, *args): self.data.sort(*args)
     def extend(self, other):
         if isinstance(other, UserList):
             self.data.extend(other.data)