Merge Py Idle changes

Rev 1.13 (string methods)
This commit is contained in:
Kurt B. Kaiser 2002-09-15 22:09:16 +00:00
parent 908aece9f7
commit a287644204
2 changed files with 2 additions and 4 deletions

View file

@ -12,7 +12,6 @@
import os
import sys
import string
import pyclbr
# XXX Patch pyclbr with dummies if it's vintage Python 1.5.2:
@ -117,7 +116,7 @@ def listclasses(self):
if sup.module != cl.module:
sname = "%s.%s" % (sup.module, sname)
supers.append(sname)
s = s + "(%s)" % string.join(supers, ", ")
s = s + "(%s)" % ", ".join(supers)
items.append((cl.lineno, s))
self.classes[s] = cl
items.sort()