Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5f47e57

Browse files
committed
* Lib/mhlib.py (removefromallsequences): call putsequences with
proper argument * Lib/{bdb,cmd,pdb}.py: Mods by Rickard Westman: No longer barfs on lambda:s (outputs "<lambda>" as the function name); "a(rgs)" in pdb now works; help messages added to pdb (lifted from pdb.doc). Also, "h pdb" calls pdb.help(). cmd.do_help() displays topics on a nicer way (I think). Also, topics for which there is a help_ method, but no do_method (like "pdb" above) are displayed in a special way. My own mod: fix break on function to also support methods.
1 parent 8c97365 commit 5f47e57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/mhlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def removefromallsequences(self, list):
382382
if not seq:
383383
del sequences[name]
384384
if changed:
385-
self.putsequences()
385+
self.putsequences(sequences)
386386

387387
# Return the last message number
388388
def getlast(self):

0 commit comments

Comments
 (0)