From 7a461e5aaf011243d9ac2658e4172e316b031eb9 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 20 Sep 1992 21:41:09 +0000 Subject: New module regsub contains sub(), gsub() and split() as in nawk. string.splitfields(s, '') now returns [s] as split() in nawk. Added _exit to exported functions of os. --- Lib/os.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/os.py') diff --git a/Lib/os.py b/Lib/os.py index af0ce89560..556268fe4e 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -18,6 +18,7 @@ try: from posix import * + from posix import _exit name = 'posix' curdir = '.' pardir = '..' -- cgit v1.2.1