]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
* Lib/mhlib.py (removefromallsequences): call putsequences with
authorGuido van Rossum <guido@python.org>
Thu, 14 Jul 1994 14:01:00 +0000 (14:01 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 14 Jul 1994 14:01:00 +0000 (14:01 +0000)
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.

Lib/mhlib.py

index 187603e19f5911009f19ec062bba5c95e2a66663..b24695cfebf943bc1e7cc7f6e27430449df47411 100644 (file)
@@ -382,7 +382,7 @@ class Folder:
                                        if not seq:
                                                del sequences[name]
                if changed:
-                       self.putsequences()
+                       self.putsequences(sequences)
 
        # Return the last message number
        def getlast(self):