diff options
author | Guido van Rossum <guido@python.org> | 1992-09-20 21:41:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-09-20 21:41:09 (GMT) |
commit | 7a461e5aaf011243d9ac2658e4172e316b031eb9 (patch) | |
tree | a333855142b647a2ca74f5ee84e1d66c11754542 /Lib/os.py | |
parent | 7066dd75c5ee8385135541d03fb8edd8939ad740 (diff) | |
download | cpython-7a461e5aaf011243d9ac2658e4172e316b031eb9.zip cpython-7a461e5aaf011243d9ac2658e4172e316b031eb9.tar.gz cpython-7a461e5aaf011243d9ac2658e4172e316b031eb9.tar.bz2 |
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.
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -18,6 +18,7 @@ try: from posix import * + from posix import _exit name = 'posix' curdir = '.' pardir = '..' |