18.10 Obsolete

newdir.py - New dir() function (the standard dir() is now just as good)

addpack.py - standard support for "packages" (use ni instead)

fmt.py - text formatting abstractions (too slow)

Para.py - helper for fmt.py

lockfile.py - wrapper around FCNTL file locking (use fcntl.lockf/flock intead)

tb.py - Print tracebacks, with a dump of local variables (use pdb.pm() or traceback.py instead)

codehack.py - extract function name or line number from a function code object (these are now accessible as attributes: co.co_name, func.func_name, co.co_firstlineno)



guido@python.org