Added a _v21 def to FL.py and added two new input field types
Added runcall(func, *args) interfaces to profile.py, bdb.py, pdb.py, wdb.py
Added new module bisect.py and used it in sched.py.
Mostly cosmetic changes to profile.py (changed output format).
diff --git a/Lib/stdwin/wdb.py b/Lib/stdwin/wdb.py
index 9914f3f..b3d6b73 100755
--- a/Lib/stdwin/wdb.py
+++ b/Lib/stdwin/wdb.py
@@ -283,6 +283,11 @@
try: x.runctx(statement, globals, locals)
finally: x.close()
+def runcall(*args):
+ x = Wdb().init()
+ try: apply(Pdb().init().runcall, args)
+ finally: x.close()
+
TESTCMD = 'import x; x.main()'
def test():