mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
Remove functions in string module that are also string methods. Also remove:
* all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
This commit is contained in:
parent
ff11334927
commit
9d72bb452b
69 changed files with 396 additions and 2113 deletions
|
@ -163,7 +163,7 @@ class GetKeysDialog(Toplevel):
|
|||
if finalKey:
|
||||
finalKey = self.TranslateKey(finalKey, modifiers)
|
||||
keyList.append(finalKey)
|
||||
self.keyString.set('<' + string.join(keyList,'-') + '>')
|
||||
self.keyString.set('<' + '-'.join(keyList) + '>')
|
||||
|
||||
def GetModifiers(self):
|
||||
modList = [variable.get() for variable in self.modifier_vars]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue